import ftplib
import urllib2
import os
import logging
logger = logging.getLogger('ftpuploader')
hdlr = logging.FileHandler('ftplog.log')
formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
hdlr.setFormatter(formatter)
logger.addHandler(hdlr)
logger.setLevel(logging.INFO)
FTPADDR = "some ftp address"
def upload_to_ftp(con, filepath):
try:
f = open(filepath,'rb') # file to send
con.storbinary('STOR '+ filepath, f) # Send the file
f.close() # Close file and FTP
logger.info('File successfully uploaded to '+ FTPADDR)
except, e:
logger.error('Failed to upload to ftp: '+ str(e))
Wydaje się, że to nie działa, pojawia się błąd składniowy, jaki jest prawidłowy sposób rejestrowania wszelkiego rodzaju wyjątków w pliku
,
później except
, otrzymasz global name 'e' is not defined
, co nie jest dużo lepsze niż zła składnia.
except Exception as e
lub except Exception, e
, w zależności od wersji Python.
,
późniejexcept
.