我正在尝试将几个文件从我的本地Windows目录复制到远程linux目录。
它适用于具有相同类型扩展名的文件。但是当文件夹中有不同的扩展名时会中断。
守则:
import os
import glob
import paramiko
glob_pattern='*.*'
try:
ssh.connect(host,username=user,password=pwd)
ftp = ssh.open_sftp()
try:
ftp.mkdir(dir_remote)
command=dir_remote+'/setuplog'
ftp.mkdir(command)
commande=dir_remote+'/emsfolder'
ftp.mkdir(commande)
try:
for fname in glob.glob(uploadfolder + os.sep + glob_pattern):
local_file = os.path.join(uploadfolder, fname)
remote_file = dir_remote + '/' + os.path.basename(local_file)
ftp.put(local_file,remote_file)
ftp.chmod(remote_file ,0777)
except IOError, e:
print (e)
except IOError, e:
print (e)
except paramiko.AuthenticationException, ae:
print (ae)
finally:
ssh.close()
我试图仅传输2个文件(1.sh和2.pl)。当1.sh被复制时,在远程服务器上创建了一个0字节的2.pl文件,然后我得到了错误:
size mismatch in put! 0 != 2200
我正在使用:
python 2.7, Paramiko - 1.15.2
请帮助。
答案 0 :(得分:10)
我怀疑这与文件夹中的不同扩展程序有什么关系。 paramiko的sftp_client.py:putfo()
中的代码最后读到:
s = self.stat(remotepath)
if s.st_size != size:
raise IOError('size mismatch in put! %d != %d' % (s.st_size, size))
我遇到了类似的问题,结果发现远程文件系统已满,因此paramiko无法写入/放置文件。
BTW,您可以使用uploadfolder + os.sep + glob_pattern
os.path.join(uploadfolder, glob_pattern)
(和类似)