2

我不知道如何从根目录引用文件。目前,URI 中的任何路径都是用户目录的子目录。我正在尝试通过以下方式访问 /var/www :

sftp://user:password@host/var/www

但它是无效的。

org.apache.commons.vfs2.FileNotFolderException: Could not list the contents of "sftp://user:***@host/var/www" because it is not a folder.
4

1 回答 1

3

我找到了解决方案。

SftpFileSystemConfigBuilder builder = SftpFileSystemConfigBuilder.getInstance();
FileSystemOptions options = new FileSystemOptions();
builder.getKnownHosts(options);
builder.setUserDirIsRoot(options, false);
builder.setTimeout(options, 5000);

FileObject directory = manager.resolveFile("sftp://user:password@host/var/www", options);
于 2012-11-22T11:25:20.250 回答