pyhon file exist code example
Example: file exist python
import os.path
if os.path.exists('filename.txt'):
print ("File exist")
else:
print ("File not exist")
import os.path
if os.path.exists('filename.txt'):
print ("File exist")
else:
print ("File not exist")