Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试列出远程系统上的所有文件。为此,我使用了该系统的 sftp 通道。JCraft 频道 sftp 提供了一个 Ls 方法,它返回文件和文件夹列表,但不返回隐藏文件/文件夹(以“.”开头)。
有没有办法做到这一点?
谢谢
看来您需要使用如下ls方法:
ls
sftp.ls(".*")
获取“隐藏”文件。