ReadWrite
Functions
Creates a directory at the specified path. Parent directories will be created automatically if they don't exist.
Creates a file at the specified path. Parent directories will be created automatically if they don't exist.
Filters the current read-only file system implementation such that only paths that are accepted by filter are visible and accessible.
Filters the current read-write file system implementation such that only paths that are accepted by filter are visible and accessible.
Creates a Path object from an absolute path string. This method works with the path structure and doesn't check if the path actually exists in the filesystem.
Detects the type of content stored in a file using a path.
Creates a Source for reading from a file at the specified path. The returned Source is buffered.
Retrieves metadata for a file or directory using a path.
Creates a Sink for writing to a file. If the file doesn't exist, it will be created. If the parent directories don't exist, they will be created. The returned Sink is buffered.
Converts a path to its absolute path string representation. This method works with the path structure and doesn't check if the path actually exists in the filesystem.
Writes content to a file. If the file doesn't exist, it will be created. If the file exists, its content will be overwritten. Parent directories will be created if they don't exist.