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