com_error:Oulook.Application

时间:2016-11-23 14:37:15

标签: python-3.x

我正在尝试将Outlook电子邮件作为msg文件保存到使用Python的文件夹中。 代码行给出了以下错误: com_error:( - 2147467260,'Operation aborted',None,None)。

我该如何解决这个问题?

我的代码:

import win32com.client
Path = "dir\\folder"
outlook = win32com.client.Dispatch.("Outlook.Application").GetNamespace"MAPI")
inbox = outlook.Folders(Folder1Folders(Folder2).Folders(Folder3)
messages = inbox.Items
for message in messages:
    print (message.Subject)
    filename = message.Subject
    message.SaveAS(Path+ "\\" + filename)

0 个答案:

没有答案