python check if payth exists 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: file exist python
import os.path
if os.path.exists('filename.txt'):
print ("File exist")
else:
print ("File not exist")