Contact: aviboots(AT)netvision.net.il
40,959 questions
53,424 answers
573 users
from os import path if path.exists("d:\data.txt"): print("File exists") else: print("File not found") ''' run: File exists '''