vote up 17 vote down star
5

How do i check if a file exists, using python. without using a try: statement?

flag

8 Answers

vote up 21 vote down check

You can also use

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

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

link|flag
1  
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 at 0:21
vote up 0 vote down

@if os.path.exists(filename):

link|flag
vote up 2 vote down

os.path.exists(filename)

link|flag
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
vote up 16 vote down

You have the os.path.exists function:

import os.path
os.path.exists(file_path)
link|flag
vote up 2 vote down

Additionally, os.access().

link|flag
vote up 11 vote down

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|flag
vote up 14 vote down

Just to add to the answers - you're almost always better off using the try: open() 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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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