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))
यह काम नहीं करता है, मुझे सिंटैक्स त्रुटि मिलती है, किसी फ़ाइल में सभी प्रकार के अपवादों को लॉग करने के लिए यह करने का उचित तरीका क्या है
,
बाद छोड़ देते हैं except
, तो आपको मिलेगा global name 'e' is not defined
, जो गलत सिंटैक्स से बेहतर नहीं है।
except Exception as e
या except Exception, e
।
,
बाद छोड़ देनाexcept
।