Answers for "python while file exists in directory"

9

file exist python

import os.path

if os.path.exists('filename.txt'):
    print ("File exist")
else:
    print ("File not exist")
Posted by: Guest on May-13-2020
2

check if a file exists

>>> import os
>>> os.path.isfile("d:\\Package1\\package1\\fibo.py")
True
>>> os.path.isfile("d:/Package1/package1/fibo.py")
True
>>> os.path.isfile("d:\\nonexisting.txt")
Posted by: Guest on August-25-2020

Code answers related to "python while file exists in directory"

Python Answers by Framework

Browse Popular Code Answers by Language