check whether a folder exists in opython 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: 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