问题是默认文件系统和新文件系统的混合.
问题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构建方法将其作为卷安装.