Answers for "python os make nested directory"

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 "python os make nested directory"

Python Answers by Framework

Browse Popular Code Answers by Language