python 批量转换文件夹下所有 Word 文件为 PDF 文件
import comtypes.clientimport os
from datetime import datetime
def convert_word_to_pdf_comtypes(word_file, pdf_file):
try:
word = comtypes.client.CreateObject('Word.Application')
word.Visible = False
doc = word.Documents.Open(word_file)
doc.SaveAs(pdf_file, FileFormat=17)# 17 代表 PDF 格式
doc.Close()
word.Quit()
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(f"{timestamp} 成功将 {word_file} 转换为 {pdf_file}")
except Exception as e:
print(f"转换 {word_file} 失败: {e}")
def batch_convert_word_to_pdf(folder_path):
if not os.path.exists(folder_path):
print(f"错误:文件夹路径 '{folder_path}' 不存在。")
return
for filename in os.listdir(folder_path):
if filename.endswith(('.doc', '.docx')):
word_file = os.path.join(folder_path, filename)
pdf_file = os.path.join(folder_path, os.path.splitext(filename)[0] + ".pdf")
convert_word_to_pdf_comtypes(word_file, pdf_file)
if __name__ == "__main__":
folder_path = r"D:\Documents\test"# 替换为你的 Word 文件夹路径
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(timestamp + " 开始处理")
batch_convert_word_to_pdf(folder_path)
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(timestamp + " 全部处理完毕!")
用ai可以很快写出,我之前就写了一个,就用百度直接搜
import comtypes.client
import os
from datetime import datetime
def convert_word_to_pdf_comtypes(word_file, pdf_file):
try:
word = comtypes.client.CreateObject('Word.Application')
word.Visible = False
doc = word.Documents.Open(word_file)
doc.SaveAs(pdf_file, FileFormat=17)# 17 代表 PDF 格式
doc.Close()
word.Quit()
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(f"{timestamp} 成功将 {word_file} 转换为 {pdf_file}")
except Exception as e:
print(f"转换 {word_file} 失败: {e}")
def batch_convert_word_to_pdf(folder_path):
if not os.path.exists(folder_path):
print(f"错误:文件夹路径 '{folder_path}' 不存在。")
return
for filename in os.listdir(folder_path):
if filename.endswith(('.doc', '.docx')):
word_file = os.path.join(folder_path, filename)
pdf_file = os.path.join(folder_path, os.path.splitext(filename) + ".pdf")
convert_word_to_pdf_comtypes(word_file, pdf_file)
if __name__ == "__main__":
folder_path = r"D:\Documents\test"# 替换为你的 Word 文件夹路径
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(timestamp + " 开始处理")
batch_convert_word_to_pdf(folder_path)
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(timestamp + " 全部处理完毕!") 不过挺实用的 可以打包成exe文件吗 刚刚进行比赛测评,需要这个文件,刚刚好 收藏一下,会点python,但不多哈哈 好心人打包一下呗,没有python环境 挺实用的 office文档批量转PDF工具,office2pdf v2.0.1 - 吾爱破解 - 52pojie.cn
https://www.52pojie.cn/thread-1572833-1-1.html
有人发过 插入代码的方法可以参考置顶帖
【公告】发帖代码插入以及添加链接教程(有福利)
https://www.52pojie.cn/thread-713042-1-1.html
(出处: 吾爱破解论坛)