3

基于此处的脚本:.doc to pdf using python我有一个半工作脚本,可以将 .docx 文件从 C:\Export_to_pdf 导出到 pdf 到一个新文件夹中。

问题是它通过了前几个文件,然后失败了:

(-2147352567, 'Exception occurred.', (0, u'Microsoft Word', u'Command failed', u'wdmain11.chm', 36966, -2146824090), None)

这显然是一个无用的一般错误消息。如果我使用 pdb 慢慢调试它,我可以遍历所有文件并成功导出。如果我还密切关注 Windows 任务管理器中的进程,我可以看到 WINWORD 启动然后在它应该的时候结束,但是对于较大的文件,内存使用需要更长的时间才能稳定下来。这让我认为,当 WINWORD 在 client.Dispatch 对象上调用下一个方法之前没有时间初始化或退出时,脚本会出错。

win32com 或 comtypes 有没有办法识别并等待进程开始或完成?

我的脚本:

import os
from win32com import client

folder = "C:\\Export_to_pdf"
file_type = 'docx'
out_folder = folder + "\\PDF"

os.chdir(folder)

if not os.path.exists(out_folder):
    print 'Creating output folder...'
    os.makedirs(out_folder)
    print out_folder, 'created.'
else:
    print out_folder, 'already exists.\n'

for files in os.listdir("."):
    if files.endswith(".docx"):
        print files

print '\n\n'

try:
    for files in os.listdir("."):
        if files.endswith(".docx"):
            out_name = files.replace(file_type, r"pdf")
            in_file = os.path.abspath(folder + "\\" + files)
            out_file = os.path.abspath(out_folder + "\\" + out_name)
            word = client.Dispatch("Word.Application")
            doc = word.Documents.Open(in_file)
            print 'Exporting', out_file
            doc.SaveAs(out_file, FileFormat=17)
            doc.Close()
            word.Quit()
except Exception, e:
    print e

工作代码 - 只是用这个替换了 try 块。注意将 DispatchEx 语句移到 for 循环之外,并将 word.Quit() 移到 finally 语句以确保它关闭。

try:
    word = client.DispatchEx("Word.Application")
    for files in os.listdir("."):
        if files.endswith(".docx") or files.endswith('doc'):
            out_name = files.replace(file_type, r"pdf")
            in_file = os.path.abspath(folder + "\\" + files)
            out_file = os.path.abspath(out_folder + "\\" + out_name)
            doc = word.Documents.Open(in_file)
            print 'Exporting', out_file
            doc.SaveAs(out_file, FileFormat=17)
            doc.Close()
except Exception, e:
    print e
finally:
    word.Quit()
4

1 回答 1

7

这可能不是问题,但分派一个单独的单词实例然后在每次迭代中关闭它是不必要的,这可能是您看到的链内存问题的原因。您只需打开实例一次,在该实例中您可以打开和关闭您需要的所有文档。如下所示:

try:
    word = client.DispatchEx("Word.Application") # Using DispatchEx for an entirely new Word instance
    word.Visible = True # Added this in here so you can see what I'm talking about with the movement of the dispatch and Quit lines. 
    for files in os.listdir("."):
        if files.endswith(".docx"):
            out_name = files.replace(file_type, r"pdf")
            in_file = os.path.abspath(folder + "\\" + files)
            out_file = os.path.abspath(out_folder + "\\" + out_name)
            doc = word.Documents.Open(in_file)
            print 'Exporting', out_file
            doc.SaveAs(out_file, FileFormat=17)
            doc.Close()

    word.Quit()

except Exception, e:

注意:在打开 win32com 实例和文件时要小心使用 try/except,就像打开它们一样,并且在关闭它之前发生错误,它不会关闭(因为它尚未到达该命令)。

此外,您可能需要考虑使用 DispatchEx 而不仅仅是 Dispatch。DispatchEx 打开一个新实例(一个全新的 .exe),而我相信仅使用 Dispatch 会尝试寻找一个打开的实例来锁定,但是这方面的文档是模糊的。如果实际上您想要多个实例(即在一个文件中打开一个文件,在另一个文件中打开一个文件),请使用 DispatchEx。

至于等待,当需要更多时间时,程序应该在这条线上等待,但我不知道。

哦!word.Visible = True如果您希望能够看到实际打开的实例和文件,也可以使用(可能有助于直观地查看问题,但在修复时将其关闭,因为它会减慢速度;-))。

于 2013-05-14T19:53:10.530 回答