Answers for "python function to check if file exists and return true"

81

python check if file exists

import os

os.path.exists("file.txt") # Or folder, will return true or false
Posted by: Guest on February-14-2020
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 "python function to check if file exists and return true"

Python Answers by Framework

Browse Popular Code Answers by Language