How do I check if a file exists, using Python. without using a try: statement?
|
feedback
|
|
Just to add to the answers - you're almost always better off using the
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. | |||||||||
feedback
|
|
You can also use
if you need to be sure it's a file. | |||||||||
feedback
|
|
You have the os.path.exists function:
| |||
|
feedback
|
|
Unlike isfile(), exists() will yield True for directories. So depending if you want only plain files or also directories, you'll use isfile() or exists()
| |||
|
feedback
|
|
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:
| ||||
|
feedback
|
|
os.path.exists(filename) | |||||||
|
feedback
|
|
You could try this: (safer)
the ouput would be:
then, depending on try/except result your program can just keep running from there or you can code to stop it if you want. The print statement print("({})".format(e)) is for Pythonv3.2 only. For v3.1 use {0}. | |||||||
feedback
|
|
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?. | |||
|
feedback
|
This is helpful when checking for several files. Or you want to do a set intersection/ subtraction with an existing list. | ||||
|
feedback
|
|
The following covers everything:
This covers pretty-much everything :) | |||
|
feedback
|
|
You could try this: while(True): if os.path.exists("path\to\file.jpeg"): break or to avoid always checking put a sleep condition import time while os.path.exists(fname) == False: time.sleep(10) | |||||||||||||
feedback
|