vote up 1 vote down star

I want to write to/delete a file but sometimes I get a crash if the file is in use by another program. How do I check to see whether the file is opened by another process or I can open it for writing?

flag

It would be informative to list what OS and programming language that you are using. – Andy Feb 2 at 12:13
+1 Andy. Arthur, please mention the programming language or OS in the tags or in the question. – vito Feb 2 at 12:23

4 Answers

vote up 19 vote down check

The problem is, that between the time you check to see if you could get exclusive access and opening the file, something else gets exclusive access to the file, and you get the exception anyway.

The only fool proof way to see if you can get an exclusive lock on a file is to try and get an exclusive lock on the file, if you get it you have it.

If not, you catch the exception, and either

  • Go do something else
  • Wait a while and try again

It's one of life’s situations where it's better to ask for forgiveness than permission :)

link|flag
+1, and I'd love to vote this up more often. This whole "check for something, then act accordingly" seems to be either a remnant of the olden DOS (or other single-tasking) days, or it's just that programmers like to think their program is all alone on a computer... – mghie Feb 2 at 13:35
vote up 0 vote down

Not sure in which programming language you'd like to check if you can write to a file. In Java, java.io.File.canWrite() can do the job for you.

General:

In UNIX-like OS, you can use the lsof command.

link|flag
vote up 0 vote down

If you want to see which program holds a handle to your file, use the Process Monitor (download from MicroSoft).

This tool has a command line interface, so you could use your language's scripting interface (for example java.lang.Process) to run the tool and display a useful error message.

link|flag
vote up 0 vote down

IsFileInUse as given in http://delphi.about.com/cs/adptips1999/a/bltip0999_3.htm

link|flag

Your Answer

Get an OpenID
or

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