Package com.github.marschall.memoryfilesystem

Provides an in-memory implementation of a JSR-203 file system.

All public classes in this package except MemoryFileSystemProvider can be used by client code.

Using MemoryFileSystemBuilder is the recommended way to create instances. For example like this:


 try (FileSystem fs = MemoryFileSystemBuilder.newEmpty().build("name")) {
   Path path = fs.getPath("/");
 }