Releases: robtimus/memory-fs
Release list
2.1
Added getContentIfExists methods to MemoryFileSystemProvider.
Added methods to MemoryFileSystemProvider to read and write the contents of memory paths as strings.
Added constants to MemoryFileAttributeView for the view name, attribute names and metadata.
MemoryFileSystemProvider.clear now resets the read-only and hidden attributes of the root directory to false.
Keys in maps returned by FileSystemProvider.readAttribute were incorrectly prefixed with the view name, e.g. basic:size instead of size. This is no longer the case. However, the old behaviour can be turned back on by setting system property com.github.robtimus.filesystems.memory.prefixAttributes to true.
2.0.2
2.0.1
2.0
memory-fs-1.3
Added support for symbolic and hard links.
Added a more efficient deleteIfExists implementation.
memory-fs-1.2
Added support for FileChannel. It does not support the map method though; all other methods are supported.
MemoryFileSystemProvider.newByteChannel now supports options READ and WRITE/APPEND combined, allowing for read/write channels.
MemoryFileSystemProvider.newInputStream no longer supports option TRUNCATE_EXISTING.
memory-fs-1.1
Added getContent, setContent and clear methods to class MemoryFileSystemProvider.
memory-fs-1.0.1
Fixed calculation of the total and usable spaces.