Python Vérifiez si le fichier existe
import os
os.path.exists("file.txt") # Or folder, will return true or false
Duco Defiant Dogfish
import os
os.path.exists("file.txt") # Or folder, will return true or false
import os.path
if os.path.isfile('filename.txt'):
print ("File exist")
else:
print ("File not exist")
import os
file_exists = os.path.exists("example.txt") # Returns boolean representing whether or not the file exists
from os.path import exists
file_exists = exists(path_to_file)
#File_exists returns True if file exists otherwise returns False
print(file_exists)