Le répertoire Python contient un fichier
import os.path
if os.path.isfile('filename.txt'):
print ("File exist")
else:
print ("File not exist")
Stupid Stoat
import os.path
if os.path.isfile('filename.txt'):
print ("File exist")
else:
print ("File not exist")