欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python创建文件夹

程序员文章站 2022-06-11 17:14:22
filePath = 'D:\12345' # 判断文件夹是否存在,不存在则创建文件夹if not os.path.exists(filePath): os.makedirs(filePath) ......

filepath = 'd:\12345'

# 判断文件夹是否存在,不存在则创建文件夹
if not os.path.exists(filepath):
  os.makedirs(filepath)