Answers for "how to make a directory only if it is not there in python"

7

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

Code answers related to "how to make a directory only if it is not there in python"

Python Answers by Framework

Browse Popular Code Answers by Language