Vérifiez si le fichier existant déjà
import os.path
if os.path.exists('filename.txt'):
print ("File exist")
else:
print ("File not exist")
HotFlow
import os.path
if os.path.exists('filename.txt'):
print ("File exist")
else:
print ("File not exist")