check if directory exists in path python code example
Example 1: python check if folder exists
import os
print(os.path.isdir("/home/el"))
print(os.path.exists("/home/el/myfile.txt"))
Example 2: python check if folder exists
os.path.isdir("/home/el")
Example 3: 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