up vote 39 down vote favorite
7
share [g+] share [fb]

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?

link|improve this question
2  
Caption when I changed the tag: "im correcting". No joke. – Joel Coehoorn Nov 5 '08 at 17:32
1  
Agreed- I wish there were a TryOpen (i.e. Try-Parse pattern). – Tristan Jul 26 '11 at 15:51
feedback

7 Answers

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.

link|improve this answer
1  
Exactly. This is a classic example of a race condition. – Powerlord Nov 5 '08 at 17:41
It would be great if there were a "File System Mutex". But without the existence of that, you are dead right. – Jason Jackson Nov 5 '08 at 18:48
Or use linux/unix, ofcourse. – chrissie1 Nov 5 '08 at 19:43
Isnt the question about file opening rights/permissions? So first you check if you have permission on this file, and then only if you have permission, you try if it's available? – korro Nov 5 '08 at 19:45
2  
korro: you have to be able to handle bad permissions on failure anyway, and that makes the initial check redundant and wasteful. – Joel Coehoorn Nov 6 '08 at 16:46
show 8 more comments
feedback

While I agree that this does create a race condition, I believe FileIOPermission has the answer if you really wanted to do it:

new FileIOPermission(FileIOPermissionAccess.Read, path).Demand();

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, you'll have to P/Invoke AccessCheck, AuthzAccessCheck, or GetEffectiveRightsFromACL. You'd also need to retrieve the actual ACL from the file, and be wary of enumerating permissions on remote servers. just use this nice and easy code.

link|improve this answer
2  
Sorry. That doesn't verify if you have physically access to the file but only if your privilege under the framework includes "reading files" which doesn't meet the requirement of the question. – Maxime Rouiller Nov 5 '08 at 19:14
Why not? The question is "I would like to check if I have rights to open the file". You might want to check if you have rights first, and only then try if you can access it. – korro Nov 5 '08 at 19:43
You say it's not checking the underlying file system permissions. Are you saying that if the Demand call "succeeds", it's possible that at that instance you did not actually have read access to the file? I can understand that the framework could deny you access to a file, while the underlying filesystem would otherwise allow access, but I seriously doubt the framework would allow you demand access to a particular path, and imply that access is allowed when the underlying file system doesn't allow it. That just doesn't make sense. – Triynko Nov 29 '11 at 5:46
A simple code example of obtaining the effective permissions from the ACL is here: stackoverflow.com/a/1281638/88409 – Triynko Nov 29 '11 at 5:56
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:

/// <summary>
/// Tries to open a file, with a user defined number of attempt and Sleep delay between attempts.
/// </summary>
/// <param name="filePath">The full file path to be opened</param>
/// <param name="fileMode">Required file mode enum value(see MSDN documentation)</param>
/// <param name="fileAccess">Required file access enum value(see MSDN documentation)</param>
/// <param name="fileShare">Required file share enum value(see MSDN documentation)</param>
/// <param name="maximumAttempts">The total number of attempts to make (multiply by attemptWaitMS for the maximum time the function with Try opening the file)</param>
/// <param name="attemptWaitMS">The delay in Milliseconds between each attempt.</param>
/// <returns>A valid FileStream object for the opened file, or null if the File could not be opened after the required attempts</returns>
public FileStream TryOpen(string filePath, FileMode fileMode, FileAccess fileAccess,FileShare fileShare,int maximumAttempts,int attemptWaitMS)
{
    FileStream fs = null;
    int attempts = 0;

    // Loop allow multiple attempts
    while (true)
    {
        try
        {
            fs = File.Open(filePath, fileMode, fileAccess, fileShare);

            //If we get here, the File.Open succeeded, so break out of the loop and return the FileStream
            break;
        }
        catch (IOException ioEx)
        {
            // IOExcception is thrown if the file is in use by another process.

            // Check the numbere of attempts to ensure no infinite loop
            attempts++;
            if (attempts > maximumAttempts)
            {
                // Too many attempts,cannot Open File, break and return null 
                fs = null;
                break;
            }
            else
            {
                // Sleep before making another attempt
                Thread.Sleep(attemptWaitMS);

            }

        }

    }
    // Reutn the filestream, may be valid or null
    return fs;
}
link|improve this answer
@Ash I think u didn read question properly HE wants to avoid try catch. – Ravisha Feb 10 '10 at 7:15
4  
@Ravisha, did you even read Joel's top voted answer? As Joel says, "What you do instead is just try to open the file and handle the exception if it fails". Please don't downvote just because you don't like the fact that something cannot be avoided. – Ashley Henderson Feb 10 '10 at 7:40
Thanks for the code! One thing, it might be better to use using e.g. see Tazeem answer here – Cel Oct 24 '11 at 13:00
Given you return the filestream then the using would have to be used by the caller though ... – Cel Oct 24 '11 at 14:00
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 Exception objects performs poorly) probably isn't relevant to code that's opening a file.

I suppose that if you're writing a method that populates a List<FileStream> by opening every file in a directory subtree and you expected large numbers of them to be inaccessible you might want to check file permissions before trying to open a file so that you didn't get too many exceptions. But you'd still handle the exception. Also, there's probably something terribly wrong with your program's design if you're writing a method that does this.

link|improve this answer
feedback

Eric Lippert probably explains why Joel is right here

link|improve this answer
Hehe, I read that a while ago and was thinking about for this exact post as well, because this is exactly a vexing exception. But we're still waiting for a built-in File.TryOpen() method, and even then you might still need to be careful if you allow sufficient sharing access. – Joel Coehoorn Nov 5 '08 at 17:53
feedback
public static FileStream GetFileStream(String filePath, FileMode fileMode, FileAccess fileAccess, FileShare fileShare, ref int attempts, int attemptWaitInMilliseconds)
{            
    try
    {
         return File.Open(filePath, fileMode, fileAccess, fileShare);
    }
    catch (UnauthorizedAccessException unauthorizedAccessException)
    {
        if (attempts <= 0)
        {
            throw unauthorizedAccessException;
        }
        else
        {
            Thread.Sleep(attemptWaitInMilliseconds);
            attempts--;
            return GetFileStream(filePath, fileMode, fileAccess, fileShare, ref attempts, attemptWaitInMilliseconds);
        }
    }
}
link|improve this answer
-1: use "throw;" not "throw unauthorizedAccessException;". You're losing your stack trace. – John Saunders Mar 18 '10 at 12:54
Why is attempts passed by ref? That makes no sense. Neither does testing for <= instead of just ==. – Konrad Rudolph Mar 18 '10 at 12:55
@John: well, in this case it’s desirable to lose the (deeply nested) stack trace of the recursive call so I think in this instance throw ex is actually the right thing to do. – Konrad Rudolph Mar 18 '10 at 12:56
@Konrad: @Rudzitis: I'm changing my reason for the -1. It's worse than screwing the stack by "throw ex". You're screwing the stack by artificially inducing extra stack levels through recursion at a time when stack depth actually matters. This is an iterative problem, not a recursive one. – John Saunders Mar 18 '10 at 13:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.