Answers for "python check if path does not exist"

24

python check if path does not exist

import os
if not os.path.exists('my_folder'):
    os.makedirs('my_folder')
Posted by: Guest on April-10-2020
6

python make directory if not exists

try:
    os.makedirs("path/to/directory")
except FileExistsError:
    # directory already exists
    pass
Posted by: Guest on November-07-2020
0

python check if path does not exist

str = {cj}
print = {str}
Posted by: Guest on September-10-2021

Code answers related to "python check if path does not exist"

Python Answers by Framework

Browse Popular Code Answers by Language