Answers for "check file name python"

30

how to check whether file exists in python

import os.path

if os.path.isfile('filename.txt'):
    print ("File exist")
else:
    print ("File not exist")
Posted by: Guest on March-18-2020
13

python os if file exists

import os.path

if os.path.isfile('filename.txt'):
    print ("File exist")
else:
    print ("File not exist")
Posted by: Guest on May-03-2020
1

python find file name

filesName = list(map(os.path.basename, glob.glob("..\yourPath\*txt")))
print(filesName)
Posted by: Guest on January-31-2021

Python Answers by Framework

Browse Popular Code Answers by Language