How to avoid File Blocking - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T15:08:40Zhttp://stackoverflow.com/feeds/question/218096http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218096/how-to-avoid-file-blocking1How to avoid File BlockingGripsoft2008-10-20T11:25:45Z2008-10-20T23:56:16Z
<p>We are monitoring the progress of a customized app (whose source is not under our control) which writes to a XML Manifest. At times , the application is stuck due to unable to write into the Manifest file. Although we are covering our traces by explicitly closing the file handle using File.Close and also creating the file variables in Using Blocks. But somehow it keeps happening. ( Our application is multithreaded and at most three threads might be accessing the file. )
Another interesting thing is that their app updates this manifest at three different events(add items, deleting items, completion of items) but we are only suffering about one event (completion of items). My code is listed here</p>
<pre><code>using (var st = new FileStream(MenifestPath, FileMode.Open, FileAccess.Read))
{
using (TextReader r = new StreamReader(st))
{
var xml = r.ReadToEnd();
r.Close();
st.Close();
//................ Rest of our operations
}
}
</code></pre>
http://stackoverflow.com/questions/218096/how-to-avoid-file-blocking/218106#2181062Answer by pradeeptp for How to avoid File Blockingpradeeptp2008-10-20T11:31:38Z2008-10-20T11:31:38Z<p>hope the following link helps.</p>
<p><a href="http://stackoverflow.com/questions/119548/problem-in-writing-to-single-file-in-web-service-in-net">http://stackoverflow.com/questions/119548/problem-in-writing-to-single-file-in-web-service-in-net</a></p>
http://stackoverflow.com/questions/218096/how-to-avoid-file-blocking/218159#2181590Answer by Gripsoft for How to avoid File BlockingGripsoft2008-10-20T11:54:28Z2008-10-20T11:54:28Z<p>The problem is different because that person is having full control on the file access for all processes while as i mentioned ONE PROCESS IS THIRD PARTY WITH NO SOURCE ACCCESS. And our applications are working fine. However, their application seems stuck if they cant get hold the control of file. So i am willing to find a method of file access that does not disturb their running.</p>
http://stackoverflow.com/questions/218096/how-to-avoid-file-blocking/218253#2182531Answer by MrZebra for How to avoid File BlockingMrZebra2008-10-20T12:29:41Z2008-10-20T12:29:41Z<p>If you are only reading from the file, then you should be able to pass a flag to specify the sharing mode. I don't know how you specify this in .NET, but in WinAPI you'd pass <code>FILE_SHARE_READ | FILE_SHARE_WRITE</code> to <code>CreateFile()</code>.</p>
<p>I suggest you check your file API documentation to see where it mentions sharing modes.</p>
http://stackoverflow.com/questions/218096/how-to-avoid-file-blocking/218315#2183151Answer by Omer van Kloeten for How to avoid File BlockingOmer van Kloeten2008-10-20T12:50:30Z2008-10-20T12:50:30Z<p>Two things:</p>
<ol>
<li>You should do the rest of your operations outside the scopes of the <code>using</code> statements. This way, you won't risk using the closed stream and reader. Also, you needn't use the <code>Close</code> methods, because when you exit the scope of the <code>using</code> statement, <code>Dispose</code> is called, which is equivalent.</li>
<li>You should use the overload that has the <code>FileShare</code> enumeration. Locking is paranoid in nature, so the file may be locked automatically to protect you from yourself. :)</li>
</ol>
<p>HTH.</p>
http://stackoverflow.com/questions/218096/how-to-avoid-file-blocking/219941#2199410Answer by jezell for How to avoid File Blockingjezell2008-10-20T21:12:44Z2008-10-20T21:12:44Z<p>This could happen if one thread was attempting to read from the file while another was writing. To avoid this type of situation where you want multiple readers but only one writer at a time, make use of the ReaderWriterLock or in .NET 2.0 the ReaderWriterLockSlim class in the System.Threading namespace.</p>
http://stackoverflow.com/questions/218096/how-to-avoid-file-blocking/220353#2203530Answer by tshak for How to avoid File Blockingtshak2008-10-20T23:56:16Z2008-10-20T23:56:16Z<p>Also, if you're using .NET 2.0+, you can simplify your code to just:</p>
<pre><code>string xmlText = File.ReadAllText(ManifestFile);
</code></pre>
<p>See also: <a href="http://msdn.microsoft.com/en-us/library/system.io.file.readalltext.aspx" rel="nofollow">File.ReadAllText on MSDN</a>.</p>