Answers for "how to make nested directories in python"

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

Code answers related to "how to make nested directories in python"

Python Answers by Framework

Browse Popular Code Answers by Language