Resolution from comments:
Application crash was caused by another issue
I am reading/writting to a file from 2 different applications, when the file is being read or written to, it will always be locked by app A or B and they both make use of FileShare.None
.
My issue is that even wrapping the reader around try/catch it still crashes the application with IOException at the using line (does not happen with the writter).
I have also made the catch as catch (IOException ...
which I believe makes no difference other then make it more readable.
What is the correct way to ignore when the file is locked and keep trying until the file is available ?
while (true)
{
try
{
using (FileStream stream = new FileStream("test_file.dat", FileMode.Open, FileAccess.Read, FileShare.None))
{
using (TextReader reader = new StreamReader(stream))
{
// bla bla bla does not matter
}
}
}
catch
{
// bla bla bla does not matter again
}
Thread.Sleep(500);
}
Write
private bool WriteData(string data)
{
try
{
using (FileStream stream = new FileStream("test_file.dat", FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None))
{
stream.SetLength(0);
using (TextWriter writer = new StreamWriter(stream))
{
writer.Write(data);
}
}
return true;
}
catch
{
return false;
}
}
Please note that I am not giving share rights (both writer and reader use FileShare.None
) to anyone when the file is being used for whatever process be it reading or writting so basically I am handling the exception until the file is available which is not working.
Here is the code we use for this purpose.
Example of use: