Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
5  
Why do you want to avoid try .. catch? It's Pythonic. – octopusgrabbus Jun 29 '12 at 21:47
26  
@octopusgrabbus it's not enough to simply check for an 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
9  
@octopusgrabbus in python it's try .. except, not try .. catch – AnojiRox Jan 29 at 19:16

16 Answers

up vote 569 down vote accepted

Just to add to the answers - it's usually safer to use the following approach:

try:
   with open('filename'): pass
except IOError:
   print 'Oh dear.'

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.

share|improve this answer
76  
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
42  
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
37  
hum the question was "without using a try: statement?" ? – Daniel Magnusson Feb 7 '12 at 8:43
11  
@Brian please, please re-word your answer (or allow me). I find it misleading and too generalized as it is now. Using path.isfile is more precise and 100% safe. The actual thing that causes security vulnerabilities is when you check it once (without locking the file in any way) and assume that it's going to stay that way. People look at this answer first and should be told when they want isfile and when they should do a try/except. – Kos Jul 25 '12 at 15:22
9  
-1 for assuming that you always intend to read the file just after checking that it exists. There is no such assumption in the question. And surely there are cases where you don't intend to read the file after the check. E.g. you may just want to store file locations in a database for your webapp to use for linking to these files later. – m000 Oct 16 '12 at 15:01
show 10 more comments

You can also use

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

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

share|improve this answer
32  
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
27  
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
11  
It's also worthwile to mention that the "potential security vulnerabilities" are characteristic for any concurrent system and the canonical way to deal with race conditions is to obtain a lock on the file before calling isfile. – Kos Oct 27 '12 at 9:21

You have the os.path.exists function:

import os.path
os.path.exists(file_path)
share|improve this answer

Unlike isfile(), exists() will yield True for directories.
So depending on 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
share|improve this answer
3  
I like it when the OP's question is answered. There are many uses where race conditions would not be present though of course we don't know the specific circumstances surrounding the original asking of the question. – demongolem Oct 5 '12 at 14:25

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:

share|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 '12 at 6:34
Added new link. Non-python, but still illustrates the race problem. – pkoch Jul 5 '12 at 21:01
import os
os.path.exists(filename)
share|improve this answer
1  
You'll need an 'import os', of course. – emk Sep 17 '08 at 12:57
1  
Indeed you will. – benefactual Sep 17 '08 at 12:58
actually this approach much much cleaner. – CMinus Dec 3 '11 at 3:45

The following covers everything:

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

PATH='./file.txt'

if 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 :)

share|improve this answer
there is not much point checking if path.exist and path.isfile, because you if the latter is true the former will always be aswell – wim Apr 9 at 2:50
I don't beleive in micro-optimization. Its better to be more clear and explicit. I guess perception difference. No offence. – Yugal Jindle Apr 9 at 5:42
1  
I agree 100% - and I am not saying for the purposes of optimisation. It is that having multiple conditions, some of which are superfluous, is less clear and explicit. – wim Apr 9 at 5:45
Thumbs up.. Edited :) – Yugal Jindle Apr 9 at 6:12

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 the result, your program can just keep running from there or you can code to stop it if you want.

share|improve this answer
2  
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
1  
The empty format {} was added in python 2.7... – Macke Nov 5 '12 at 9:33

Additionally, os.access().

share|improve this answer

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

share|improve this answer

@if os.path.exists(filename):

share|improve this answer

You can simply use tempfile module to know whether file exists or not:

import tempfile

tempfile._exists('filename') # return True or False
share|improve this answer
-1 no good reason to use a _protected method when the same functionality is in os.path – wim Apr 9 at 2:53
You can use this if you are not sure about whether its a file or directory. – user969923 Apr 9 at 8:32
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.

share|improve this answer

You should definitely use this one.

from os.path import exists

if exists("file") == True:
    print "File exists."
elif exists("file") == False:
    print "File doesn't exist."
share|improve this answer
Why is this marked down? Does it not work? I wish people would explain why they mark down. – Bepetersn Apr 19 at 23:30
Upvoted due to clear intent to help the OP. I disagree with coding style but that is no reason to downvote. Also, this example is not really self contained since " File "C:\Users****\Desktop\datastore.py", line 4 print "File exists." ^ SyntaxError: invalid syntax " – Dmitry Apr 27 at 13:21

This sample function will test for a file's presence in a very Pythonic way using try .. except:

def file_exists(filename):
    try:
        with open(filename) as f:
            return True
    except IOError:
        return False
share|improve this answer
3  
This function returns false if the file exists but the user does not have read permission. – del Jul 20 '12 at 3:17
   
@del that's kind of the point... – AnojiRox Jan 27 at 14:29
@AnojiRox - But it's not what the OP asked for. If the file exists, the function should return true. – del Jan 28 at 0:26

You could try this:

while(True):
    if os.path.exists(fname):
        break

or to avoid always checking put a sleep condition

while os.path.exists(fname) == False:
    time.sleep(10)
share|improve this answer
26  
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
13  
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
11  
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
2  
There is unfortunately no scenario where there would be a justification to constantly loop os.path.exists. If you need to wait for the file to be created, there are better alternatives. – eandersson Nov 7 '12 at 13:55
just a joke, relax – gekannt Nov 19 '12 at 19:41
show 1 more comment

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.