我想上傳蟒蛇使用ftp文件,但我得到一個錯誤說:Python的FTP文件名無效的錯誤
ftplib.error_perm: 550 Filename invalid
當我運行下面的代碼:
ftp = FTP('xxx.xxx.x.xxx', 'MY_FTP', '')
ftp.cwd("/incoming")
file = open('c:\Automation\FTP_Files\MaxErrors1.json', 'rb')
ftp.storbinary('STOR c:\Automation\FTP_Files\MaxErrors1.json', file)
ftp.close()
我已檢查文件是否存在於我指定的位置,是否有人知道可能導致此問題的原因?
感謝您的幫助,就解決它 – ChrisG29