Python-在同一远程服务器上复制文件的最有效方法

时间:2018-08-14 07:41:05

标签: python paramiko pysftp

我希望提高python lamda的性能,该python lamda将文件复制到同一sftp服务器上以进行备份。这是我当前的代码:

for attr in sftp_server.listdir_attr():
    if dt.datetime.fromtimestamp(attr.st_mtime) > date_limit:
        c = sftp_server.open(attr.filename, 'r')
        d = c.read()
        with sftp_server.open(copy_target_1 + attr.filename, 'w') as x:
            x.write(d)
        with sftp_server.open(copy_target_2 + attr.filename, 'w') as y:
            y.write(d)
        c.close()

有什么办法可以提高复印速度?我可以使用任何库吗?谢谢

0 个答案:

没有答案