我正在使用SFTPClient
从远程服务器下载文件。但是,我不知道远程路径是文件还是目录。如果远程路径是一个目录,我需要递归处理这个目录。
这是我的代码:
def downLoadFile(sftp, remotePath, localPath):
for file in sftp.listdir(remotePath):
if os.path.isfile(os.path.join(remotePath, file)): # file, just get
try:
sftp.get(file, os.path.join(localPath, file))
except:
pass
elif os.path.isdir(os.path.join(remotePath, file)): # dir, need to handle recursive
os.mkdir(os.path.join(localPath, file))
downLoadFile(sftp, os.path.join(remotePath, file), os.path.join(localPath, file))
if __name__ == '__main__':
paramiko.util.log_to_file('demo_sftp.log')
t = paramiko.Transport((hostname, port))
t.connect(username=username, password=password)
sftp = paramiko.SFTPClient.from_transport(t)
我发现了问题:函数os.path.isfile
或os.path.isdir
返回False
。因此,看起来这些功能不适用于 remotePath。