Skip to content

Python, how to check if a file or directory exists

New Course Coming Soon:

Get Really Good at Git

The os.path.exists() method provided by the os standard library module returns True if a file exists, and False if not.

Here is how to use it:

import os

filename = '/Users/flavio/test.txt'

exists = os.path.exists(filename)

print(exists) # True
→ Get my Python Handbook
→ Get my Python Handbook

Here is how can I help you: