Answers for "how to check if a directory exists python"

21

python check if folder exists

import os
print(os.path.isdir("/home/el"))
print(os.path.exists("/home/el/myfile.txt"))
Posted by: Guest on June-20-2020
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
11

python check if folder exists

os.path.isdir("/home/el")
Posted by: Guest on October-27-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 "how to check if a directory exists python"

Python Answers by Framework

Browse Popular Code Answers by Language