Answers for "using os in python how to check folder exists"

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

Code answers related to "using os in python how to check folder exists"

Python Answers by Framework

Browse Popular Code Answers by Language