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