Tagged Questions

5
votes
6answers
3k views

how to best wait for a filelock to release

I have an application where i sometimes need to read from file being written to and as a result being locked. As I have understood from other questions i should catch the IOException and retry until i ...
4
votes
4answers
2k views

FileStream to save file then immediately unlock in .NET?

I have this code that saves a pdf file. FileStream fs = new FileStream(SaveLocation, FileMode.Create); fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length); fs.Flush(); fs.Close(); It ...
4
votes
2answers
616 views

.NET isolated storage file locking throws NRE

So I am trying to lock an isolated storage file in my C# client application, so that multiple copies of my application are not able to access it at the same time. I am using the following syntax: ...
3
votes
2answers
503 views

FileStream with locked file

I am wondering if it's possible to get a readonly FileStream to a locked file? I now get an exception when I try to read the locked file. using (FileStream stream = new FileStream("path", ...
3
votes
1answer
1k views

Does a StreamReader lock a text file whilst it is in use? Can I prevent this?

Does a StreamReader lock a text file whilst it is reading it? If it does, can I force the StreamReader to work in a "read-only" or "non locking" mode? My workaround would be to copy the file to a ...
2
votes
2answers
463 views

Cannot delete an image file that is shown in a listview

In my listview I show thumbnails of small images in a certain folder. I setup the listview as follows: var imageList = new ImageList(); foreach (var fileInfo in dir.GetFiles()) { try { ...
1
vote
4answers
860 views

C# - Lock file until browser is closed, user navigates away from page, or session expires

Is there any way to lock a file until a browser is closed, the user leaves the current page, or their session expires? I have a java app that reads annotations from a text file and lets a user modify ...