Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to check whether a file is locked without using a try catch block? Right now, the only way I know of is to just open the file and catch any System.IO.IOException.

share|improve this question
2  
The trouble is that an IOException could be thrown for many reasons other than a locked file. – JohnFx Feb 9 '10 at 16:48

8 Answers

up vote 69 down vote accepted

No, unfortunately, and if you think about it, that information would be worthless anyway since the file could become locked the very next second (read: short timespan).

Why specifically do you need to know if the file is locked anyway? Knowing that might give us some other way of giving you good advice.

If your code would look like this:

if not locked then
    open and update file

Then between the two lines, another process could easily lock the file, giving you the same problem you were trying to avoid to begin with: exceptions.

share|improve this answer
6  
If file is locked, we can wait some time and try again. If it is another kind of issue with file access then we should just propagate exception. – DixonD Oct 8 '10 at 5:11
4  
Yes, but the standalone check for whether a file is locked is useless, the only correct way to do this is to try to open the file for the purpose you need the file, and then handle the lock problem at that point. And then, as you say, wait, or deal with it in another way. – Lasse V. Karlsen Oct 8 '10 at 8:06
You could argue the same for access rights though it would of course be more unlikely. – user232986 Jun 6 at 9:38
@LasseV.Karlsen Another benefit of doing a preemptive check is that you can notify the user before attempting a possible long operation and interrupting mid-way. The lock occurring mid-way is still possible of course and needs to be handled, but in many scenarios this would help the user experience considerably. – Thiru 1 hour ago

When I faced with a similar problem, I finished with the following code:

public class FileManager
{
    private string _fileName;

    private int _numberOfTries;

    private int _timeIntervalBetweenTries;

    private FileStream GetStream(FileAccess fileAccess)
    {
        var tries = 0;
        while (true)
        {
            try
            {
                return File.Open(_fileName, FileMode.Open, fileAccess, Fileshare.None); 
            }
            catch (IOException e)
            {
                if (!IsFileLocked(e))
                    throw;
                if (++tries > _numberOfTries)
                    throw new MyCustomException("The file is locked too long: " + e.Message, e);
                Thread.Sleep(_timeIntervalBetweenTries);
            }
        }
    }

    private static bool IsFileLocked(IOException exception)
    {
        int errorCode = Marshal.GetHRForException(exception) & ((1 << 16) - 1);
        return errorCode == 32 || errorCode == 33;
    }

    // other code

}
share|improve this answer
8  
+1 Just what i needed for my issue :-) – Fedearne Oct 28 '10 at 7:20
Oh, it seems that I haven't read that question has part "...without using a try catch block"( – DixonD Dec 15 '10 at 15:45
2  
Thanks for the code! it helps me :D – cyrene Jun 16 '11 at 9:40

Instead of using interop you can use the .NET FileStream class methods Lock and Unlock:

FileStream.Lock http://msdn.microsoft.com/en-us/library/system.io.filestream.lock.aspx

FileStream.Unlock http://msdn.microsoft.com/en-us/library/system.io.filestream.unlock.aspx

share|improve this answer
1  
This is really the correct answer, as it gives the user the ability to not just lock/unlock files but sections of the files as well. All of the "You can't do that without transactions" comments may raise a valid concern, but are not useful since they're pretending that the functionality isn't there or is somehow hidden when it's not. – BrainSlugs83 Oct 13 '11 at 21:49
8  
Actually, this is not a solution because you cannot create an instance of FileStream if the file is locked. (an exception will be thrown) – Zé Carlos Jan 27 '12 at 17:54

You can also check if any process is using this file and show a list of programs you must close to continue like an installer does.

public static string GetFileProcessName(string filePath)
    {

            Process[] procs = Process.GetProcesses();
            string fileName = Path.GetFileName(filePath);

            foreach (Process proc in procs)
            {
                if (proc.MainWindowHandle != new IntPtr(0) && !proc.HasExited)
                {
                    ProcessModule[] arr = new ProcessModule[proc.Modules.Count];
                    foreach (ProcessModule pm in proc.Modules)
                    {
                        if (pm.ModuleName == fileName)
                            return proc.ProcessName;
                    }
                }
            }


        return null;
    }
share|improve this answer
2  
This can only tell which process keeps an executable module (dll) locked. It will not tell you which process has locked, say, your xml file. – Constantin Jul 8 '12 at 20:58

You could call LockFile via interop on the region of file you are interested in. This will not throw an exception, if it succeeds you will have a lock on that portion of the file (which is held by your process), that lock will be held until you call UnlockFile or your process dies.

share|improve this answer

Then between the two lines, another process could easily lock the file, giving you the same problem you were trying to avoid to begin with: exceptions.

However, this way, you would know that the problem is temporary, and to retry later. (E.g., you could write a thread that, if encountering a lock while trying to write, keeps retrying until the lock is gone.)

The IOException, on the other hand, is not by itself specific enough that locking is the cause of the IO failure. There could be reasons that aren't temporary.

share|improve this answer

You can see if the file is locked by trying to read or lock it yourself first.

Please see my answer here for more information.

share|improve this answer

A variation of DixonD's excellent answer (above).

    public static bool TryOpen(
        string path,
        FileMode fileMode,
        FileAccess fileAccess,
        FileShare fileShare,
        TimeSpan timeout,
        out Stream stream)
    {
        var endTime = DateTime.Now + timeout;
        while (DateTime.Now < endTime)
        {
            if (TryOpen(path, fileMode, fileAccess, fileShare, out stream))
                return true;
        }

        stream = null;
        return false;
    }

    public static bool TryOpen(
        string path,
        FileMode fileMode,
        FileAccess fileAccess,
        FileShare fileShare,
        out Stream stream)
    {
        try
        {
            stream = File.Open(path, fileMode, fileAccess, fileShare);
            return true;
        }
        catch (IOException e)
        {
            if (!FileIsLocked(e))
                throw;

            stream = null;
            return false;
        }
    }

    private const uint HRFileLocked = 0x80070020;
    private const uint HRPortionOfFileLocked = 0x80070021;
    private static bool FileIsLocked(IOException ioException)
    {
        var errorCode = (uint)Marshal.GetHRForException(ioException);
        return errorCode == HRFileLocked || errorCode == HRPortionOfFileLocked;
    }

Usage:

    private void Sample(string filePath)
    {
        Stream stream = null;

        try
        {
            var timeOut = TimeSpan.FromSeconds(1);

            if (!TryOpen(
                filePath,
                FileMode.Open,
                FileAccess.ReadWrite,
                FileShare.ReadWrite,
                timeOut,
                out stream))
                return;

            // Use stream...
        }
        finally
        {
            if (stream != null)
                stream.Close();
        }
    }
share|improve this answer
This is the only practical solution so far. And it works. – Gravitas Feb 5 at 19:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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