开发者

how to protect my files from editing in C#

I am new to C# , i wrote one application its contain directories and some file , i dont want to edit these file from outside of the program or manually , plz tell me how to do that if u provide the cod开发者_运维知识库e that will be very usefull.

Thx


There is no real way to protect from within the application. If you're storing these files on a file system, they will be accesible based on file system permissions. You could store information in a password protected database or something similiar in order to make it only accessible to the application.

Actually on second thought, you may be able to save these files within a resource bundle. I'm not sure if that is entirely protected though.


You can set the read only attribute. It is only a minor inconvenience to someone who wants to edit a file, but you haven't got much control over what a user does outside of your program. At least if a user clears the read only attribute and changes your file you can blame them for it.

System.IO.File.SetAttributes("path\\file", FileAttributes.ReadOnly)


Are you just reading from these files or writing to them? If you're just reading them, you might embed them as resources in your compiled output rather than keeping them as files on disk.

http://support.microsoft.com/kb/319292

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜