[.net] Restrict file access

Started by
0 comments, last by Washu 19 years, 8 months ago
How can I protect a file from being deleted while open in a vb.net application? For example if I have a text file and dont want people to delete it while it is in use by the software how would I protect it from being deleted?
Advertisement
FileStream fs = new FileStream("myFile", FileMode.Create, FileAccess.ReadWrite, FileShare.None);orFileStream fs = new FileStream("myFile", FileMode.Create, FileAccess.ReadWrite, FileShare.Read);

In time the project grows, the ignorance of its devs it shows, with many a convoluted function, it plunges into deep compunction, the price of failure is high, Washu's mirth is nigh.

This topic is closed to new replies.

Advertisement