python – 在pysftp get中指定文件模式

前端之家收集整理的这篇文章主要介绍了python – 在pysftp get中指定文件模式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们可以写一个简单的得到这样的:
import pysftp

hostname = "somehost"
user = "bob"       
password = "123456"  
filename = 'somefile.txt'

with pysftp.Connection(hostname,username=user,private_key='/home/private_key_file') as sftp:
    sftp.get(filename)

但是,我想在文件名中指定一个模式,例如:’* .txt’

有关如何使用pysftp执行此操作的任何想法?

解决方法

在pysftp中没有下载与文件掩码匹配的文件功能.

你必须:

>使用listdirwalktree列出目录(如果需要递归)
>迭代文件列表,过滤所需的文件
>分别致电get.

有关灵感,请参阅如何实现get_dget_r(递归).

有关简单实现,请参阅List files on SFTP server matching wildcard in Python using Paramiko.有关递归示例,请参阅Python pysftp get_r from Linux works fine on Linux but not on Windows.

原文链接:https://www.f2er.com/python/241750.html

猜你在找的Python相关文章