我想从Python的SFTP站点下载文件,但是我想首先对文件应用过滤器,例如。仅下载符合特定格式的文件。我只想将过滤器应用于文件名,而不是完整路径。但是,当我要下载文件时,需要完整路径。是否有捷径可寻?

最佳答案

我想我明白你在这里问什么。我附加了一段代码,该代码块先获取一个远程文件列表,然后获取本地文件列表,然后使用该代码块列出要传输的文件列表(这意味着这些文件位于远程目录中,而不位于本地目录中这与放置文件的功能相反)。然后循环遍历,仅传输符合文件过滤器的文件。

def getFiles ( remotePath, filterValue, hostname, user, pwd, pathShare, remove ):
    srv = sftpfunc (hostname,user,pwd)
    retFiles = []
    srv.chdir(remotePath)
    remoteFiles = srv.listdir()
    localFiles = os.listdir(pathShare)
    files = srv.listdir()
    removeMe = ""
    if (len(remoteFiles) > 0):
            tranFiles = list(set(remoteFiles) - set(localFiles))
            print ('File Transfer List: ')
            for fileName in tranFiles:
                    if not filterValue in fileName: continue
                    print ('Transfering:  ',fileName)
                    srv.get(fileName, pathShare+fileName)
                    if (remove):
                            try:
                                    srv.rmfiles(fileName)
                            finally:
                                    print('Could not remove files')

                    retFiles.append(fileName)
    srv.close()
    return retFiles

10-06 05:22
查看更多