自动在python中创建多个文件夹[重复]
Posted
技术标签:
【中文标题】自动在python中创建多个文件夹[重复]【英文标题】:create multiple folders in python automatically [duplicate] 【发布时间】:2011-03-10 11:41:30 【问题描述】:我想创建一个类似C:\sample\sample1\hello.py
的路径。它应该自动创建从sample
到hello.py
的完整路径,以及它们之间的所有目录。这在 Python 中可行吗?
【问题讨论】:
【参考方案1】:以下功能可能会有所帮助:
os.makedirs os.path.dirname os.path.basename【讨论】:
【参考方案2】: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))
【讨论】:
以上是关于自动在python中创建多个文件夹[重复]的主要内容,如果未能解决你的问题,请参考以下文章