自动在python中创建多个文件夹

时间:2010-07-01 06:17:12

标签: python file creation

我想创建一个类似C:\sample\sample1\hello.py的路径。它应该自动创建从samplehello.py的完整路径,以及它们之间的所有目录。这在Python中是否可行?

2 个答案:

答案 0 :(得分:4)

以下功能可能有所帮助:

答案 1 :(得分:-1)

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))