上传文件ftp 226的python错误

时间:2016-02-10 23:32:22

标签: python ftp ftplib

当我在python中尝试使用我的脚本上传文件时,应用程序重新输入错误" 226 0匹配总数"

有时,应用上传有时不会

ftp = ftplib.FTP()
ftp.connect(ftp_host)
ftp.login(ftp_user, ftp_password)
ftp.cwd("./")
print "Sciezka", ftp.pwd()
print "Wgrywam"
fullname = newfile
name = os.path.split(fullname)[1]
f = open(fullname, "rb")
ftp.storbinary("STOR " + name, f)
f.close()
print "OK"
print "Files:"
print ftp.retrlines("LIST")
ftp.quit() 

0 个答案:

没有答案