Checks if a file exists at the specified URI.
true
if a file exists at the specified URI, false
otherwise.
Checks if a file exists at the specified URI synchronously.
true
if a file exists at the specified URI, false
otherwise.
Reads a binary file asynchronously from a given URI.
The binary content of the file with the specified URI.
Reads a binary file synchronously from a given URI.
The binary content of the file with the specified URI.
Reads the directory information for the given URI.
The list of file system entries that are contained within the specified directory.
Reads the directory information for the given URI synchronously.
The list of file system entries that are contained within the specified directory.
Reads a document asynchronously from a given URI.
The string content of the file with the specified URI.
Reads a document synchronously from a given URI.
The string content of the file with the specified
Gets the status of a file or directory. The status includes meta data such as whether the node is a file or directory.
The URI of the file or directory.
Gets the status of a file or directory synchronously. The status includes meta data such as whether the node is a file or directory.
The URI of the file or directory.
Provides methods to interact with an abstract file system. The default implementation is based on the node.js
fs
API.