我正在寫一個簡單的腳本,它將文件附加到郵件中,但它沒有找到該文件。這是我的一個塊:Python沒有在同一目錄中找到文件
# KML attachment
filename='20140210204804.kml'
fp = open(filename, "rb")
att = email.mime.application.MIMEApplication(fp.read(),_subtype="kml")
fp.close()
att.add_header('Content-Disposition','attachment',filename=filename)
msg.attach(att)
文件20140210204804.kml與腳本位於同一文件夾中。我得到以下錯誤:
IOError: [Errno 2] No such file or directory: '20140210204804.kml'
任何幫助表示讚賞。
你是如何運行腳本?當前目錄不一定與腳本的位置相同。 –