python超链接打开远程文件,如何使用python打开远程服务器文件夹?

How to Open the remote server folder >

inside the folder only images store we read all the images.

Server is Linux server

import paramiko

import sys

import os

ssh = paramiko.SSHClient()

ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

ssh.connect('', username='******', password='******')

ftp = ssh.open_sftp()

#filea = ftp.get('/var/www/folder_image/', '#')

#Here coded how we open the dir and read one by one all images property(name,size,path,etc.)

ftp.close()

I used this code

So please kindly reply

解决方案

To download all files from a remote folder over ssh, you could use ftp.listdir() to list the files followed by ftp.get() for each file:

#!/usr/bin/env python

import os

import sys

from contextlib import closing

from paramiko import SSHConfig, SSHClient

# specify hostname to connect to and the remote/local paths

hostname, remote_dirname, destdir = sys.argv[1:]

# load parameters to setup ssh connection

config = SSHConfig()

with open(os.path.expanduser('~/.ssh/config')) as config_file:

config.parse(config_file)

d = config.lookup(hostname)

# connect

with closing(SSHClient()) as ssh:

ssh.load_system_host_keys() #NOTE: no AutoAddPolicy()

ssh.connect(d['hostname'], username=d.get('user'))

with closing(ssh.open_sftp()) as sftp:

# cd into remote directory

sftp.chdir(remote_dirname)

# cd to local destination directory

os.chdir(destdir)

# download all files in it to destdir directory

for filename in sftp.listdir():

sftp.get(filename, filename)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值