Answers for "how to check folder is exist or not in 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

Code answers related to "how to check folder is exist or not in python"

Python Answers by Framework

Browse Popular Code Answers by Language