Using C# is it possible to test if a lock is held on a file - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T01:52:23Zhttp://stackoverflow.com/feeds/question/698442http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/698442/using-c-is-it-possible-to-test-if-a-lock-is-held-on-a-file2Using C# is it possible to test if a lock is held on a fileNoah2009-03-30T18:26:02Z2009-05-15T08:14:15Z
<p><strong>BACKGROUND:</strong>
I use an offset into a file and the Filestream lock/unlock menthods to control read/write access. I am using the following code to test if a lock is currently held on the file</p>
<pre><code>try
{
fs.Lock( RESERVED_BYTE, 1 );
fs.Unlock( RESERVED_BYTE, 1 );
rc = 1;
}
catch
{
rc = 0;
}
</code></pre>
<p><strong>QUESTION:</strong><br />
My goal is to eliminate the try/catch block. Is there some better way to see if the lock exists?</p>
<p><strong>EDIT:</strong><br />
Note: This question is not about if the file exists. I already know it does. It is about synchronizing write access.</p>
http://stackoverflow.com/questions/698442/using-c-is-it-possible-to-test-if-a-lock-is-held-on-a-file/698459#6984595Answer by Jon B for Using C# is it possible to test if a lock is held on a fileJon B2009-03-30T18:29:41Z2009-03-30T18:29:41Z<p>Personally I would just catch a locked file when trying to open it. If it's unlocked now, it may be locked when you try to open it (even if it's just a few ms later).</p>
http://stackoverflow.com/questions/698442/using-c-is-it-possible-to-test-if-a-lock-is-held-on-a-file/698461#6984610Answer by Koistya Navin for Using C# is it possible to test if a lock is held on a fileKoistya Navin2009-03-30T18:30:04Z2009-03-30T18:30:04Z<p>I don't think it's possible without try, catch.</p>
http://stackoverflow.com/questions/698442/using-c-is-it-possible-to-test-if-a-lock-is-held-on-a-file/698462#6984624Answer by casperOne for Using C# is it possible to test if a lock is held on a filecasperOne2009-03-30T18:30:12Z2009-03-30T19:11:28Z<p>You can call the LockFile API function through the P/Invoke layer directly. You would use the handle returned by the SafeFileHandle property on the FileStream.</p>
<p>Calling the API directly will allow you to check the return value for an error condition as opposed to resorting to catching an exception.</p>
<p><hr /></p>
<p>Noah asks if there is any overhead in making the call to the P/Invoke layer vs a try/catch.</p>
<p>The Lock file makes the same call through the P/Invoke layer and throws the exception if the call to LockFile returns 0. In your case, you aren't throwing an exception. In the event the file is locked, you will take less time because you aren't dealing with a stack unwind.</p>
<p>The actual P/Invoke setup is around seven instructions I believe (for comparison, COM interop is about 40), but that point is moot, since your call to LockFile is doing the same thing that the managed method does (use the P/Invoke layer).</p>
http://stackoverflow.com/questions/698442/using-c-is-it-possible-to-test-if-a-lock-is-held-on-a-file/698469#6984693Answer by Joel Coehoorn for Using C# is it possible to test if a lock is held on a fileJoel Coehoorn2009-03-30T18:31:56Z2009-03-30T18:31:56Z<blockquote>
<p>My goal is to eliminate the try/catch block</p>
</blockquote>
<p>Remember, the file system is <em>volatile</em>: just because your file is in one state for one operation doesn't mean it will be in the same state for the next operation. You have to be able to handle exceptions from the file system.</p>
http://stackoverflow.com/questions/698442/using-c-is-it-possible-to-test-if-a-lock-is-held-on-a-file/867537#8675371Answer by RandomNickName42 for Using C# is it possible to test if a lock is held on a fileRandomNickName422009-05-15T08:14:15Z2009-05-15T08:14:15Z<p>In some circumstances you can also use <a href="http://msdn.microsoft.com/en-us/library/ms681622%28VS.85%29.aspx" rel="nofollow">WCT</a>, it's usually implmented by debugger's or profilers, however it can be used from any code as the usual debugger requirement of being the thread which has the debug port open is not a pre-requisit. As such WCT is a very comprehensive and precise information regarding lock contention.</p>
<p>A <a href="http://msdn.microsoft.com/en-us/magazine/cc163395.aspx" rel="nofollow">managed example</a> (all-be-it somewhat trickey), show's utility for this specific sub-set of the native debug API's on the CLR.</p>