一、单独使用os.makedirs(path,mode=0o777)
代码语言:javascript复制import os
path='d\test'
os.makedirs(path,0755)
print('路径被创建')
二,循环创建
代码语言:javascript复制path=base_path '\' "ciliylist[i]"
if not os.path.exists(path)
os.makedirs(path)
file=open(path 'a.txt',w)
f.write('成功创建路径')
file.close()