Answers for "make sure that directory exists python3"

7

python check if directory exists and create

if not os.path.exists('my_folder'):
    os.makedirs('my_folder')
Posted by: Guest on July-21-2021
2

python pathlib create directory if not exists

pathlib.Path('/tmp/sub1/sub2').mkdir(parents=True, exist_ok=True)
Posted by: Guest on October-17-2021

Code answers related to "make sure that directory exists python3"

Python Answers by Framework

Browse Popular Code Answers by Language