I am getting the error:
The process cannot access the file
'C:\AMR_VOYANT_TESTING\PWM_TESTER\UUT_LOGS\TEST_LOG_PWM_10245_UUT_SN_10.TXT'
because it is being used by another process.
My program flushes, closes, and disposes the log file. My program later attempts to open the file to append more data. This 2nd opening causes the above exception.
Process Explorer
does not show the handle of the file, during execution either directly accessing the binary file or running in debug mode with MS Visual C# Express 2008.
No other processes should be using this file since it is an original file created by my application.
Some solutions in Stack Overflow suggest implementing a using
statement, but this is not feasible because the writing of data does not occur in a simple or short compound statement. A writer delegate is used by a logging class to write data to the file.
According to other solutions in Stack Overflow, in a for
loop, a file may not be closed before the next iteration where the file is opened. I've waited over 10 seconds before opening the file again, to no avail (same exception).
Here is a sample of the code:
public void
close()
{
get_log_file().WriteLine("");
get_log_file().Flush();
get_log_file().Close();
get_log_file().Dispose();
m_log_file = null;
return;
}
private StreamWriter
get_log_file()
{
if (m_log_file == null)
{
bool successful = false;
int retries_remaining = 5;
// do
// {
// try
// {
// m_log_file = new StreamWriter(m_filename, true);
m_log_file = new StreamWriter(new FileStream(m_filename, FileMode.OpenOrCreate, FileAccess.Write, FileShare.None));
// }
// catch (IOException)
// {
// --retries_remaining;
// System.Threading.Thread.Sleep(250); // Units are in milliseconds;
// }
// } while (!successful && (retries_remaining >= 0));
}
return m_log_file;
}
private System.IO.StreamWriter m_log_file = null;
private string m_filename;
Since I have a deadline to meet, I'm looking for resolutions to this issue. Some of my ideas are:
- Keep file open; don't open and close during test runs.
- Display a "waiting for file" message to user while polling the file (to see when it can be opened again)
- Writing an unmanaged C or C++ library to handle the file I/O (since unmanaged C and C++ don't use the .NET framework).
- Learning how to tell the .NET framework to hurry up and close the file.
I'm using MS Visual C# 2008 Express on Windows 7, 64-bit architecture.
I resolved this issue by keeping the file open which removed the need to re-open it each time.