How do I check if a file exists, using Python. without using a try: statement?

link|improve this question

feedback

13 Answers

up vote 263 down vote accepted

Just to add to the answers - you're almost always better off using the

try:
   open()
except IOError as e:
   print 'Oh dear.'

approach.

os.path.exists() only tells you that the file existed at that point. In the tiny interval between that and running code that depends on it, it is possible that someone will have created or deleted the file.

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.

link|improve this answer
18  
if he doesn’t want to touch the file if it doesn’t exist, he can simply do both: if os.path.isfile(path_to_file): try: open(path_to_file) … – flying sheep Jun 11 '11 at 14:14
18  
FWIW, one legitimate reason to check file existence is to warn the user if they are about to overwrite a file. In this case, checking existence before opening is necessary, and the only consequences of TOCTTOU would be that the dialog was unnecessary. – Cam Jackson Sep 8 '11 at 1:29
6  
hum the question was "without using a try: statement?" ? – Daniel Magnusson Feb 7 at 8:43
Depending on what you want to do (naturally) and assuming its reasonable to expect there won't be issues with race conditions, it doesn't seem efficient to open the file. Especially if you had to do many such operations. – spatel Mar 30 at 0:55
Isn't that going to leave the file opened? Wouldn't be better to go: try: with open(str) as f: pass except IOError as e: print('Oh dear.') – Art Apr 13 at 11:50
feedback

You can also use

import os.path
os.path.isfile(fname)

if you need to be sure it's a file.

link|improve this answer
27  
It should be noted, like in Brian's answer below, that this way of checking the file can lead to a potential security vulnerabilities. – Zxaos Apr 25 '09 at 0:21
14  
It's fair to point out though, that if you're talking about script running locally, it should be no problem. – orange80 Aug 5 '11 at 19:38
feedback

You have the os.path.exists function:

import os.path
os.path.exists(file_path)
link|improve this answer
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()

>>> print os.path.isfile("/etc/passwd")
True
>>> print os.path.isfile("/etc")
False
>>> print os.path.isfile("/does/not/exist")
False
>>> print os.path.exists("/etc/passwd")
True
>>> print os.path.exists("/etc")
True
>>> print os.path.exists("/does/not/exist")
False
link|improve this answer
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:

link|improve this answer
I am facing an issue with os.path.isfile(). it returns true in one module which creates the file, and False in the module which tries to access it. Even with some sleep in between. – Vivek May 26 at 6:34
feedback

os.path.exists(filename)

link|improve this answer
1  
You'll need an 'import os', of course. – emk Sep 17 '08 at 12:57
Indeed you will. – benefactual Sep 17 '08 at 12:58
actually this approach much much cleaner. – CMinus Dec 3 '11 at 3:45
feedback

You could try this: (safer)

try:
    fh = open('whatever.txt')
except IOError as e:
    print("({})".format(e))

the ouput would be:

([Errno 2] No such file or directory: 'whatever.txt')

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}.

link|improve this answer
1  
I get ValueError: zero length field name in format with this syntax (py2.6.6 on windows). Changing the print line to print("({0})".format(e)) fixed it. – matt wilkie Mar 15 '11 at 17:10
with no file i get ([Errno 2] No such file or directory: 'whatever.txt') with the whatever.txt file i get no errors at all. python 2.7.1 on macosx 10.7 – philberndt Jun 22 '11 at 12:12
feedback

Additionally, os.access().

link|improve this answer
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?.

link|improve this answer
feedback

@if os.path.exists(filename):

link|improve this answer
feedback

The following covers everything:

from os import path, access, R_OK  # W_OK for write permission.

PATH='./file.txt'

if path.exists(PATH) and path.isfile(PATH) and access(PATH, R_OK):
    print "File exists and is readable"
else:
    print "Either file is missing or is not readable"

This covers pretty-much everything :)

link|improve this answer
feedback
root,dirs,files = os.walk(LOCATION).next()
if myfile in files:
   print "yes it exists"

This is helpful when checking for several files. Or you want to do a set intersection/ subtraction with an existing list.

link|improve this answer
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)

link|improve this answer
9  
Are you crazy? Run an infinite loop until a file exists? This will never return False if a file doesn't exist, but instead it waits, potentially forever, until it is created. – Chad Nov 23 '10 at 22:23
8  
Guys, don't be so hard on the guy. He was demonstrating how to block until file exists. Not such uncommon DP... – Maxim Veksler Dec 26 '10 at 16:06
3  
I completely disagree. A common design problem doesn't justify using a horribly dangerous solution. A simple disclaimer saying "Please don't ever do this", might help... – Jason Mock Oct 28 '11 at 17:27
feedback

Your Answer

 
or
required, but never shown

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