Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I check whether a file exists without exceptions?

How do I check whether a file exists or not, without using the try statement?

like image 762
spence91 Avatar asked Sep 17 '08 12:09

spence91


People also ask

How do you determine whether a file exists?

To check if a file exists, you pass the file path to the exists() function from the os. path standard library. If the file exists, the exists() function returns True .


1 Answers

If the reason you're checking is so you can do something like if file_exists: open_it(), it's safer to use a try around the attempt to open it. Checking and then opening risks the file being deleted or moved or something between when you check and when you try to open it.

If you're not planning to open the file immediately, you can use os.path.isfile

Return True if path is an existing regular file. This follows symbolic links, so both islink() and isfile() can be true for the same path.

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

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

Starting with Python 3.4, the pathlib module offers an object-oriented approach (backported to pathlib2 in Python 2.7):

from pathlib import Path  my_file = Path("/path/to/file") if my_file.is_file():     # file exists 

To check a directory, do:

if my_file.is_dir():     # directory exists 

To check whether a Path object exists independently of whether is it a file or directory, use exists():

if my_file.exists():     # path exists 

You can also use resolve(strict=True) in a try block:

try:     my_abs_path = my_file.resolve(strict=True) except FileNotFoundError:     # doesn't exist else:     # exists 
like image 68
rslite Avatar answered Sep 23 '22 18:09

rslite