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.
在 apache commons net ftpclient 中有 ftpClient.printWorkingDirectory() 来获取当前目录的字符串。
如何使用 jsch sftp 客户端实现相同的目标?有一个名为 realpath(String) 的方法,但它似乎不正确,我无法让它工作。
有什么建议么?
SFTP 没有当前目录或“工作目录”的概念,这就是为什么你什么都找不到的原因。SFTP 中的所有路径都必须是绝对路径。相对路径的使用不是由标准定义的,而是特定于服务器的(因此,在不同的服务器上执行相同的操作时,您可能会大吃一惊)。