Uses of Interface
com.aoapps.io.filesystems.FileSystem
-
Uses of FileSystem in com.aoapps.io.filesystems
Classes in com.aoapps.io.filesystems that implement FileSystemModifier and TypeClassDescriptionclass
A file system that wraps another to intercept and otherwise modify interactions.class
Wraps any standard FileSystem implementation.class
A file system implementation that randomly fails, this is used by test suites to verify correct behavior under expected failure modes.class
Wraps a file system to make it read-only.class
A temporary file system stored in the Java heap.Fields in com.aoapps.io.filesystems declared as FileSystemMethods in com.aoapps.io.filesystems that return FileSystemModifier and TypeMethodDescriptionPath.getFileSystem()
Gets the file system this path belongs to and is valid for.Constructors in com.aoapps.io.filesystems with parameters of type FileSystemModifierConstructorDescriptionprotected
FileSystemWrapper
(FileSystem wrappedFileSystem) Path
(FileSystem fileSystem) Constructs the root path for the given file system.RandomFailFileSystem
(FileSystem wrappedFileSystem) Uses default probabilities and a default fast pseudo-random number generator for non-cryptographic purposes.RandomFailFileSystem
(FileSystem wrappedFileSystem, RandomFailFileSystem.FailureProbabilities failureProbabilities, Random fastRandom) Creates a new random-fail filesystem, wrapping the given filesystem.ReadOnlyFileSystem
(FileSystem wrappedFileSystem)