Answers for "if os path exists mkdir"

4

python create nested directory

from pathlib import Path
Path("/my/directory").mkdir(parents=True, exist_ok=True)    #python 3.5 above
Posted by: Guest on July-03-2020
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

Python Answers by Framework

Browse Popular Code Answers by Language