So you can't get Net::FTP to not change the timestamp of the file?
I can fix it manually the way you suggest, but I also have to put files onto the remote machine, and it's a really old Unix whose ftp server doesn't support the quote command, so I don't know how I could fix the timestamps on files that I put on the remote machine. | [reply] |
Net::FTP is not magic. Try the same steps using a plain command line FTP client and you'll see that changed timestamps are normal for FTP. Doing a 'put' or 'get' only transfers the file and does not update file time on the receiving end. Plain FTP servers and clients just slap the current time onto the transferred file.
Some FTP servers and clients allow an extension to the MDTM command to allow you to set the remote file's timestamp as a separate step after uploading the file. But if the FTP server is ancient it probably doesn't support that command.
When receiving a file locally you must also get and process the remote directory listing and extract the timestamp to be set. I'm not sure if module File::Listing will help you with the output from dir() but you could look at it.
| [reply] |
The thing is that I've tested this with just our command line ftp, and it maintains the original timestamps, which is why I thought it was curious that Net::FTP did not.
In any case, thanks for your replies.
| [reply] |