python check if file exists in directory code example
Example 1: python check if file exists
import os
os.path.exists("file.txt") # Or folder, will return true or false
Example 2: how to check whether file exists in python
import os.path
if os.path.isfile('filename.txt'):
print ("File exist")
else:
print ("File not exist")
Example 3: python how to see if file is directory
"""
Use os.path.isfile(some_string) to check if some_string is a file
Use os.path.isdir(some_string) to check if some_string is a directory
"""
import os
path = "C:/some directory/"
file = path + "file.txt"
print("variable path is a file:", os.path.isfile(path) )
print("variable path is a directory:", os.path.isdir(path) )
print()
print("variable file is a file:", os.path.isfile(file) )
print("variable file is a directory:", os.path.isdir(file) )
Example 4: python os if file exists
import os.path
if os.path.isfile('filename.txt'):
print ("File exist")
else:
print ("File not exist")
Example 5: file exist python
import os.path
if os.path.exists('filename.txt'):
print ("File exist")
else:
print ("File not exist")
Example 6: how to check if file exists pyuthon
import os
file_exists = os.path.exists("example.txt") # Returns boolean representing whether or not the file exists