我有一些代码可以将文件复制到远程目标。它使用UNC路径映射目录,然后执行复制。
文件大小相当大,因此一次又一次地复制需要时间。我需要检查文件是否存在,并且它是有效的,因为使用python没有损坏。它是一个可执行文件。我正在使用Windows平台。
答案 0 :(得分:0)
尝试paramiko sftpclient,
说你有连接
sftp = ssh.open_sftp()
try:
sftp.get(remote_path, local_path)
except IOError:
#set a variable here to know whether file exists
pass