Preserving modified timestamp of file while uploading to SFTP

2.5k Views Asked by At

I need to preserve modified timestamp of my file while uploading it to SFTP site.

I am using com.enterprisedt.net.ftp.ssh.SSHFTPclient for the transfer.

Please let me know if there is any way.

2

There are 2 best solutions below

2
On BEST ANSWER

Call SSHFTPClient.setModTime after the upload.

sshFtpClient.setModTime(remotePath, new Date(new File(localPath).lastModified());
0
On

Let me know if there is any way.

There is no way to preserve the timestamps while transferring the file. The SFTP protocol does not allow it.

The SFTP wire protocol specification documents were never completed and ratified, but the most recent draft (for version 6 of the protocol) is draft-ietf-secsh-filexfer-13.

If you look at Section 8.1 and 8.2, you will see that the client requests for opening a file (SSH_FXP_OPEN) and writing a file (SSH_FXP_WRITE) do not pass any time-stamp information from the client to the server. Since the request doesn't pass timestamps, they cannot be preserved in the transfer.

If you want to "preserve" the timestamp, the protocol document says that the client needs to send an SSH_FXP_SETSTAT or SSH_FXP_FSETSTAT request to update the relevant file attributes.

Martin's Answer has code for doing this using the SSHFTPClient library.

I have not checked, but I am confident that this applies to the earlier versions of the SFTP protocol as well.