Obtenga la fecha de creación de archivos FTP Python
connection = ftplib.FTP(**ftpCredentials)
modifiedTime = connection.sendcmd('MDTM ' + fileName)
# successful response: '213 20120222090254'
Light Lynx