The Python os.path
module is used for the file or directory pathename’s manipulations. The method isfile()
of this module is used to check if any file is available or not. Similarly exists()
function returns true for files and directory exists.
This tutorial includes:
- Check if file exists in Python
- Check if file is readable in Python
- Create directory if not exists in Python
1. Check if file exists
For example, To test how isfile()
and exists()
functions work. Create a TestFile.py file using following content and execute it python.
- isfile() – function check if given input file exists and is a file not directory.
- exists() – function check if given input file/directory exists.
See the below examples:
Python >= 3.4 users can use object oriented approach to check if file exist or not. we need to import Path from the pathlib module.
2. Check if file is readable
You can also check if the file exists and is readable for the current users in Python.
#3. Python – Check if Link File
Use os.path.islink
to find if any file is a link file.
3. Create a directory if not exists
Use os.path.exists
to check if any directory exists or not and use os.makedirs
to create a directory. Below example will create a directory /tmp/newdir
if not exists.
5 Comments
Very good and straight forward advise on what should be a simple thing.
Many thanks, Rahul!
Thanks, Rahul for precise and good explanation.
Thanks Rahul..
Thanks