How do I check if a file exists, using Python, without using a try: statement?
|
|
||||
|
Just to add to the answers - it's usually safer to use the following approach:
This is a race condition that can often lead to security vulnerabilities. An attacker can create a symlink to an arbitrary file immediately after the program checks no file exists. This way arbitrary files can be read or overwritten with the privilege level your program runs with. |
|||||||||||||||||||||
|
|
You can also use
if you need to be sure it's a file. |
|||||||||||||
|
|
You have the os.path.exists function:
|
|||
|
|
|
Unlike
|
|||||
|
|
Prefer the try/catch. It's considered better style and avoids race conditions. Don't take my word for it. There's plenty of support for this theory. Here's a couple:
|
|||||
|
|
|||||||||||
|
|
The following covers everything:
This covers pretty-much everything :) |
|||||||||||
|
|
You could try this: (safer)
the ouput would be:
then, depending on the result, your program can just keep running from there or you can code to stop it if you want. |
|||||||||||
|
|
Just to add to the confusion, it seems that the try: open() approach suggested above doesn't work in Python, as file access isn't exclusive, not even when writing to files, c.f. What is the best way to open a file for exclusive access in Python?. |
|||
|
|
|
You can simply use tempfile module to know whether file exists or not:
|
|||||
|
This is helpful when checking for several files. Or you want to do a set intersection/ subtraction with an existing list. |
||||
|
|
|
You should definitely use this one.
|
|||||
|
|
This sample function will test for a file's presence in a very Pythonic way using try .. except:
|
||||
|
You could try this:
or to avoid always checking put a sleep condition
|
|||||||||||||||||||
|


IOError, since it can be thrown for a number of reasons even if the file does exist - no rights, file locked, whatever. Exists != can be opened, let's not oversimplify. – Kos Jul 25 '12 at 15:30