Determine last modification time of a remote file.
#include <ftplib.h> int ftplib_moddate(char *path, char *buf, int max, netbuf *nbp);
ftplib_moddate() attempts to determine the last access time of a remote file and return it to the user's buffer. The date and time are returned as a string in the format 'YYYYMMDDHHMMSS'.
If a good response is received and the date and time are successfully parsed out of the result, 1 is returned. Otherwise, 0 is returned.
Some servers may not support the MDTM command.
$Id: ftplib_moddate.html,v 1.1 2002/12/02 03:12:52 te Exp $