gpt4 book ai didi

python - 如何查看远程路径是文件还是目录?

转载 作者:太空狗 更新时间:2023-10-29 17:53:14 25 4
gpt4 key购买 nike

我正在使用 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.isfileos.path.isdir 返回 False。所以,看起来这些函数不能用于 remotePath。

最佳答案

os.path.isfile()os.path.isdir() 仅适用于本地 文件名。

我会改用 sftp.listdir_attr() 函数并加载完整的 SFTPAttributes 对象,并使用 st_mode 检查它们的属性 stat 模块实用函数:

import stat

def downLoadFile(sftp, remotePath, localPath):
for fileattr in sftp.listdir_attr(remotePath):
if stat.S_ISDIR(fileattr.st_mode):
sftp.get(fileattr.filename, os.path.join(localPath, fileattr.filename))

关于python - 如何查看远程路径是文件还是目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18205731/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com