I read queries regarding file locking but either they refer to multiple file access problem or something else.Ususal response to this would be lock to the file using FileStream.Lock,using FileShare.None with File.Open etc, but locking say a 100 files is not a good programming practice,also in these scenarios the lock will be released if my app closes/crashes which I don't want also i.e. I want the lock to persist and only my app can open it for others.
On msdn I found System.Security,System.Security.AccessControl namespaces,I believe these might help.Also this article will shed some light on what I want.
EDIT::
Mannnnn... did anyone referred the "this" link I provided.
Ok...in short I want something what PC Security software does.Does that ring a bell...anyone used it????
Thanks.
I would recommend using the IsolatedStorage class. There you can store a file which is directly "linked" to your application.
Have a closer look to it in MSDN IsolatedStorage. You may use a file assembly scoped. Anyway each user MAY navigate through the file system to your applicationData folder and open this file manually (although it is rather unexpected)