Creates an instance of Node file system adapter.
Enable or disable flushing the file system.
The handle for this adapter, basically an id. Should be something simple but descriptive, like 'node-fs' or 'blob'.
Log useful messages to the journal about file operations.
The real root of this file system which will be committed to.
Flush the underlying file system to prepare for a commit. This is a destructive operation unless flush is disabled.
Create a link in persistent storage.
Make a directory or directory tree in persistent storage.
Read a file from persistent storage; assumes 'utf8' file encoding.
Remove items from persistent storage.
Snapshot of the underlying file system; an asynchronous iterable which returns an entry of path and data.
The asynchronous iterable to get the snapshot.
Create a file or write the contents of a file to persistent storage.
Generated using TypeDoc
An adapter for NodeJS local filesystems using the
fs
module.