Answers for "os exists dir"

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
0

os dir exists

>>> from pathlib import Path
 >>> Path('new_folder').is_dir()
 True
 >>> (Path.cwd() / 'new_folder' / 'file.txt').exists()
 False
Posted by: Guest on June-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language