Ich schreibe eine Anwendung, die eine Datei auf einen FTP-Server hochladen soll.
Hier ist der Code:
try:
f = open(filename,"rb")
except:
print "error 0"
try:
ftp = FTP(str(self.ConfigUri))
print "CONNECTED!"
except:
print "CANNOT CONNECT"
try:
ftp = FTP(str(self.ConfigUri)) # connect to host, default port
except:
print "error 1"
try:
ftp.login() # user anonymous, passwd anonymous@
except:
print "error2"
try:
ftp.storbinary('STOR ' + filename, f)
except:
print "error 3"
try:
ftp.quit()
except:
print "error 4"
Ich erhalte einen Fehler bei ftp.storbinary('STOR ' + Dateiname, f). Hat jemand eine Idee, warum?