我正在尝试使用 Python 和 Windows 扩展从 Outlook 的电子邮件中下载附件,到目前为止,我已经尝试了以下操作:
import win32com.client
outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
inbox = outlook.GetDefaultFolder(6).Folders('Subfolder')
messages = inbox.Items
message = messages.GetLast() #open last message
attachments = message.Attachments #assign attachments to attachment variable
attachment = attachments.Item(1)
attachment.SaveASFile("File_name")
此代码将文件保存在文件名下: "File_name" 。有什么办法可以使用原始文件名作为我用来保存的文件名?