【Python自动化办公】文件管理
整理博客不易,如需转载请注明出处 😃!
https://blog.csdn.net/Lyun911/article/details/114438189
1 创建
1.1 os.mkdir() 创建 folder
os.mkdir()
/ os.path.exists()
import os
import shutil
if not os.path.exists('新文件夹'):
os.mkdir('新文件夹')
1.2 os.makedirs() 创建 folders
os.makedirs()
import os
os.makedirs('第一层/第二层/第三层')
# 第一层/第二层 文件夹如果有,不会报错
# 但是如果已经有第三层文件夹就会报错
1.3 open() 创建 file
f = open('test.txt', 'r', encoding = 'utf8')
text = f.readlines() # 输出:list
print(text)
f.close()# 忘记写 f.close() 会出错
1.4 with open() as f: 创建 file
with open('./1.txt', 'a+', encoding='utf-8') as f:
f.seek(