I want to create a path like C:\sample\sample1\hello.py
. It should automatically create the complete path from sample
to hello.py
, and all the directories in between. Is this possible in Python?
The following functions may help:
- os.makedirs
- os.path.dirname
- os.path.basename
import os
root_path = 'C:\path'
folders = ['folder 01', 'folder 02', 'folder 03']
for folder in folders:
os.mkdir(os.path.join(root_path, folder))
精彩评论