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
2answers
618 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
507 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
464 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
{
...