Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python make directory tree from path

import os
path = "/home/dail/first/second/third"
os.makedirs(path, exist_ok=True)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Python #directory #tree #path
ADD COMMENT
Topic
Name
5+1 =