国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > Python > 正文

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

2020-02-16 00:28:52
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

網(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)建多級(jí)目錄所以改用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í)例就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持武林站長(zhǎng)站。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 祁东县| 永顺县| 赫章县| 禄劝| 长泰县| 秭归县| 田阳县| 霍山县| 定南县| 永川市| 穆棱市| 建瓯市| 中超| 皮山县| 阜南县| 嫩江县| 将乐县| 锡林浩特市| 鹰潭市| 阳城县| 西昌市| 婺源县| 专栏| 秦皇岛市| 苗栗市| 泗阳县| 南雄市| 阿鲁科尔沁旗| 仁寿县| 平武县| 绥化市| 五峰| 绵竹市| 土默特右旗| 宜丰县| 吐鲁番市| 安多县| 缙云县| 大竹县| 新竹市| 新邵县|