Preserve timestamp with Paramiko

余生颓废 提交于 2019-12-10 04:35:06

问题


Is there a way of preserving the timestamp when using Paramiko to SFTP files from one server to another similar to the -p argument in Linux?

Original file:

jim@vm3634:~$ ls -la
-rwxrwx---    1 jim  admin    2214 Mar 30 17:33 compcip.asc

Uploaded file:

sftp> ls -la
-rwxrwx---    1 no-user  no-group    2214 Mar 30 18:49 compcip.asc

The uploaded file needs to have the same timestamp as the original.


回答1:


Paramiko does not support that.

You have to explicitly call the SFTPClient.utime after the upload.


Note that pysftp (that internally uses Paramiko) supports preserving the timestamp with its pysftp.Connection.put() method.

You can reuse their implementation (code simplified by me):

local_stat = os.stat(localpath)
times = (local_stat.st_atime, local_stat.st_mtime)

sftp.put(localpath, remotepath)

sftp.utime(remotepath, times)

Similarly for downloads.



来源:https://stackoverflow.com/questions/29363697/preserve-timestamp-with-paramiko

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!