最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

python paramiko利用sftp上傳目錄到遠(yuǎn)程的實(shí)例

 更新時(shí)間:2019年01月03日 12:16:07   作者:zdpyouzhe  
今天小編就為大家分享一篇python paramiko利用sftp上傳目錄到遠(yuǎn)程的實(shí)例,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧

網(wǎng)上大部分都是上傳文件,于是個(gè)人參照網(wǎng)上一些博客的內(nèi)容,寫了一個(gè)把windows上目錄上傳到遠(yuǎn)程linux的一個(gè)小程序。

下面是代碼:

class ExportPrepare(object):
 def __init__(self):
 pass

 def sftp_con(self):
  t = paramiko.Transport((self.ip, self.port))
  t.connect(username=self.username, password=self.password)
  return t

 # 找到所有你要上傳的目錄已經(jīng)文件。
 def __get_all_files_in_local_dir(self, local_dir):
  all_files = list()

  if os.path.exists(local_dir):
   files = os.listdir(local_dir)
   for x in files:
    filename = os.path.join(local_dir, x)
    print "filename:" + filename
    # isdir
    if os.path.isdir(filename):
     all_files.extend(self.__get_all_files_in_local_dir(filename))
    else:
     all_files.append(filename)
  else:
   print '{}does not exist'.format(local_dir)
  return all_files

 # Copy a local file (localpath) to the SFTP server as remotepath
 def sftp_put_dir(self):
  try:
 #本地test目錄上傳到遠(yuǎn)程root/usr/下面
 local_dir = "c:/test"
 remote_dir = "/root/usr/test"
 
   t = self.sftp_con()
   sftp = paramiko.SFTPClient.from_transport(t)
   # sshclient
   ssh = paramiko.SSHClient()
   ssh.load_system_host_keys()
   ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
   ssh.connect(self.ip, port=self.port, username=self.username, password=self.password, compress=True)
   ssh.exec_command('rm -rf ' + remote_dir)
   if remote_dir[-1] == '/':
    remote_dir = remote_dir[0:-1]
   all_files = self.__get_all_files_in_local_dir(local_dir)
   for x in all_files:
    filename = os.path.split(x)[-1]
    remote_file = os.path.split(x)[0].replace(local_dir, remote_dir)
    path = remote_file.replace('\\', '/')
 # 創(chuàng)建目錄 sftp的mkdir也可以,但是不能創(chuàng)建多級目錄所以改用ssh創(chuàng)建。
    tdin, stdout, stderr = ssh.exec_command('mkdir -p ' + path)
    print stderr.read()
    remote_filename = path + '/' + filename
    print u'Put files...' + filename
    sftp.put(x, remote_filename)
   ssh.close()
  except Exception, e:
   print e
 
 
if __name__=='__main__':
 export_prepare = ExportPrepare()
 export_prepare.sftp_put_dir()

比較匆忙,不足之處可以指出,共同進(jìn)步。

以上這篇python paramiko利用sftp上傳目錄到遠(yuǎn)程的實(shí)例就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

瑞昌市| 来宾市| 杨浦区| 汶上县| 弥渡县| 霍城县| 东至县| 毕节市| 宝兴县| 临漳县| 阿拉善右旗| 涞源县| 松江区| 香河县| 江永县| 广元市| 德化县| 进贤县| 大石桥市| 梓潼县| 屏东县| 临夏县| 宣武区| 天柱县| 定兴县| 丰台区| 旺苍县| 阿城市| 南康市| 湖州市| 秀山| 榆社县| 宿松县| 姚安县| 武乡县| 灌南县| 博爱县| 大同市| 台中市| 宁陕县| 连云港市|