This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: ftplib: add support for MDTM command
Type: enhancement Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: Nosy List: giampaolo.rodola, rspsf
Priority: low Keywords: patch

Created on 2004-10-24 20:49 by rspsf, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
ftplib.patch rspsf, 2004-10-24 20:49
Messages (3)
msg47129 - (view) Author: Reinhard Speyerer (rspsf) Date: 2004-10-24 20:49
This patch adds a new mdtm method to class FTP which
returns the modification time of a file in the format
YYYYMMDDHHMMSS using the MDTM command.

msg64102 - (view) Author: Giampaolo Rodola' (giampaolo.rodola) * (Python committer) Date: 2008-03-19 21:15
IMHO aside from the plus of providing a workaround for a broken FTP
server response I don't think this is really necessary since the same
thing can be done by just using sendcmd('mdtm filename').
msg106067 - (view) Author: Giampaolo Rodola' (giampaolo.rodola) * (Python committer) Date: 2010-05-19 13:27
Closing this out for lack of further activity.
History
Date User Action Args
2022-04-11 14:56:07adminsetgithub: 41069
2010-05-19 13:27:30giampaolo.rodolasetstatus: open -> closed
resolution: rejected
messages: + msg106067
2008-03-19 21:15:36giampaolo.rodolasetnosy: + giampaolo.rodola
messages: + msg64102
2008-01-05 18:27:39christian.heimessetpriority: normal -> low
type: enhancement
versions: + Python 2.6
2004-10-24 20:49:00rspsfcreate