问题是默认文件系统和新文件系统的混合。
问题1:Files.createDirectory("/virtualfolder");
这实际上不会编译,所以我怀疑您的意思是:Files.createDirectory( Paths.get("/virtualfolder"));
这会尝试在默认文件系统的根目录中创建目录。您需要特权才能执行此操作,因此可能不应该将其作为测试。我怀疑您尝试通过使用字符串来解决此问题并遇到
问题2:
让我们看一下带有注释的代码FileSystem fs = Jimfs.newFileSystem(Configuration.unix());
// now get path in the new FileSystem
Path data = fs.getPath("/virtual");
// create a directory in the new FileSystem
Path dir = Files.createDirectory(data);
// create a file in the default FileSystem
// with a parent that was never created there
Path file = Files.createFile(Paths.get(dir + "/abc.txt")); // throws NoSuchFileException
让我们看最后一行:dir + "/abc.txt" >> is the string "/virtual/abc.txt"
Paths.get(dir + "/abc.txt") >> is this as path in the default filesystem
请记住,虚拟文件系统与默认文件系统平行。路径具有文件系统,不能在其他文件系统中使用。它们不只是名字。
注意:使用虚拟文件系统避免使用Paths类。此类将始终在默认文件系统中工作。文件正常,因为您首先在正确的文件系统中创建了路径。
如果您的原始计划是将虚拟文件系统安装到默认文件系统上,则需要更多。我有一个项目,在该项目中,我基于虚拟文件系统创建了Webdav服务器,然后使用OS内置方法将其作为卷挂载。