Class FilesystemExperimental
Index
Constructors
Accessors
Methods
Constructors
constructor
- new Filesystem(): Filesystem
Experimental
Returns Filesystem
Accessors
config
- get config(): FilesystemOptions<ConfigMounts>
Experimental
Returns FilesystemOptions<ConfigMounts>
The filesystem options.
constants
- get constants(): __module
Experimental
Returns __module
Constants related to the filesystem.
credentials
- get credentials(): Credentials
Experimental
Returns Credentials
The filesystem credentials.
devfs
- get devfs(): DeviceFS
Experimental
Returns DeviceFS
The device filesystem.
fs
- get fs(): __module
Experimental
Returns __module
The asynchronous ZenFS filesystem instance.
fsSync
- get fsSync(): __module
Experimental
Returns __module
The synchronous ZenFS filesystem instance.
mounts
Methods
configure
- configure(options: Partial<FilesystemOptions<ConfigMounts>>): Promise<void>
Experimental
Configures the filesystem with the given options.
Parameters
- options: Partial<FilesystemOptions<ConfigMounts>>
The options for the filesystem.
Returns Promise<void>
A promise that resolves when the filesystem is configured.
- options: Partial<FilesystemOptions<ConfigMounts>>
descriptions
exists
extractTarball
- extractTarball(tarballPath: string, extractPath: string): Promise<void>
Experimental
Extracts a tarball to the given path.
Parameters
- tarballPath: string
The path to the tarball.
- extractPath: string
The path to extract the tarball to.
Returns Promise<void>
A promise that resolves when the tarball is extracted.
- tarballPath: string
Author
Jay Mathis code@mathis.network (https://github.com/mathiscode)
The Filesystem class provides a virtual filesystem for the ecmaOS kernel.
See
ZenFS