Basically, I would like to check if I have rights to open the file before I actually try to open it; I do not want to use a try/catch for this check unless I have to. Is there a file access property I can check before hand?
feedback
|
|
I have done this countless times in the past, and nearly every time I've done it I was wrong to even make the attempt. File permissions (even file existence) are volatile — they can change at any time. Thanks to Murphy's Law this especially includes the brief period between when you check the file and when you try to open it. A change is even more likely if you're in an area where you know you need to check first. Yet strangely enough it will never happen in your testing or development environments, which tend to be fairly static. This makes the problem difficult to track down later and makes it easy for this kind of bug to make it into production. In the end, you still have to be able to handle the exception if file permissions or existence are bad in spite of your check. This makes the initial check redundant and wasteful, and while it may not sound like much we're talking about a whole extra trip out to disk here. Just try to open the file and handle the exception if it fails. Put your development effort there. The same is true even if you're just checking whether or not the file exists. | |||||||||||||||
feedback
|
|
While I agree that this does create a race condition, I believe FileIOPermission has the answer if you really wanted to do it:
Edit: As pointed out, this is for the FX permissions - not the underlying file system permissions - so it only answers half (the easy half) of your question. If you're interested in getting NTFS permissions, | |||||||||||
feedback
|
|
Quick tip for anyone else coming here with a similar problem: Watch out for web synchronization apps such as DropBox. I just spent 2 hours thinking the "using" statement (Dispose pattern) is broken in .NET. I eventually realised that Dropbox is continually reading and writing files in the background, in order to sync them. Guess where my Visual Studio Projects folder is located? Inside the "My Dropbox" folder of course. Therefore as I ran my application in Debug mode, the files it was reading and writing were also continually being accessed by DropBox to be synched with the DropBox server. This caused the locking/access conflicts. So at least I now know that I need to a more robust File Open function (ie TryOpen() that will make multiple attempts). I am surprised it's not already a built-in part of the framework. [Update] Here's my helper function:
| |||||||||||
feedback
|
|
First, what Joel Coehoorn said. Also: you should examine the assumptions that underly your desire to avoid using try/catch unless you have to. The typical reason for avoiding logic that depends on exceptions (creating I suppose that if you're writing a method that populates a | |||
|
feedback
|
|
Eric Lippert probably explains why Joel is right here | |||
feedback
|
|
| |||
|
feedback
|
| |||||||||
feedback
|