我有一个文件夹,其中包含几个名称为.docx的文件[Code2001.docx, Code2002.docx... Code2154.docx]
。
我正在尝试编写一个脚本,它将:
- 打开每个 .docx 文件
- 在文档中添加一行;“这个被检查了”
- 将 .docx 文件保存到另一个文件夹,名为“Code2001_checked”
搜索后,我只设法通过循环获取文件名:
import os
os.chdir(r"E:......\test")
for files in os.listdir("."):
if files.endswith(".docx"):
print filename
我还发现了这个:docx 模块,但文档很差,无法继续。
有关如何完成此脚本的任何建议?