判断目录是否存在
import os dirs = '/Users/joseph/work/python/' if not os.path.exists(dirs): os.makedirs(dirs)
Python中创建文件和文件夹
1:创建文件
# 不加路径就是当前文件夹下,如果文件夹中存在此文件,用w新建,将文件内容清零,a追加,不会清空数据
with open('****.xls', 'w', encoding='utf-8') as f: print(f)
# 在指定文件夹下新建
with open('*:\\**文件夹\\****.xls', 'w', encoding='utf-8') as f: print(f)
import datetime # 调用库 date=str(datetime.date.today()) # 新建变量 with open('*:\\**\\1.创建文件-{}.xls'.format(date), 'w', encoding='utf-8') as f: print(f)
2:创建文件夹–不加路径就是当前文件夹下
# 单层文件夹
import os '''os.mkdir('E:\\PY练习\\创建文件夹')如果创建的文件夹存在,程序报错,推荐先验证是否存在''' if not os.path.exists('*:\\***\\创建文件夹'): os.mkdir('*:\\***\\创建文件夹')
# 多层文件夹
if not os.path.exists('*:\\***\\第一层/第二层/第三层'): os.makedirs('*:\\***\\第一层/第二层/第三层')