0
我試圖將一些文件夾複製到在Linux上運行的遠程機器。下面是我使用的代碼,我不知道有什麼需要添加的副本發生使用paramiko將文件夾傳輸到遠程機器
import paramiko
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(
paramiko.AutoAddPolicy())
ssh.connect('xxx.xxx.xx.xx', username='root',
password='xxxxxxx')
#scp -r /mnt/hgfs/windows-D-drive/Testing/ [email protected]:/home # equivalent code here
基本上我需要傳輸目錄 - (與子目錄)窗體/ linux機器到通過python在Linux上運行的遠程機器 – user2190483 2013-04-25 03:57:29