python创建文件夹
程序员文章站
2023-09-29 08:58:55
filePath = 'D:\12345' # 判断文件夹是否存在,不存在则创建文件夹if not os.path.exists(filePath): os.makedirs(filePath) ......
filepath = 'd:\12345'
# 判断文件夹是否存在,不存在则创建文件夹
if not os.path.exists(filepath):
os.makedirs(filepath)