Interface Filesystem
interface Filesystem {
config: FilesystemOptions<ConfigMounts>;
constants: any;
credentials: any;
devfs: any;
fs: any;
fsSync: any;
mounts: Map<string, any>;
configure(options: Partial<FilesystemOptions<ConfigMounts>>): Promise<void>;
descriptions(
t?: TFunction<"translation", undefined> | (key: string) => string,
): Map<string, string>;
exists(path: string): Promise<boolean>;
extractTarball(tarballPath: string, extractPath: string): Promise<void>;
}
config: FilesystemOptions<ConfigMounts>;
constants: any;
credentials: any;
devfs: any;
fs: any;
fsSync: any;
mounts: Map<string, any>;
configure(options: Partial<FilesystemOptions<ConfigMounts>>): Promise<void>;
descriptions(
t?: TFunction<"translation", undefined> | (key: string) => string,
): Map<string, string>;
exists(path: string): Promise<boolean>;
extractTarball(tarballPath: string, extractPath: string): Promise<void>;
}
Index
Properties
Methods
Properties
Readonly
config
Get the filesystem configuration
Readonly
constants
constants: any
Get filesystem constants
Readonly
credentials
credentials: any
Get filesystem credentials
Readonly
devfs
devfs: any
Get the device filesystem
Readonly
fs
fs: any
Get the asynchronous filesystem instance
Readonly
fsSync
fsSync: any
Get the synchronous filesystem instance
Readonly
mounts
Get mounted filesystems
Methods
configure
- configure(options: Partial<FilesystemOptions<ConfigMounts>>): Promise<void>
Configure the filesystem
Parameters
- options: Partial<FilesystemOptions<ConfigMounts>>
Configuration options
Returns Promise<void>
- options: Partial<FilesystemOptions<ConfigMounts>>
Interface for filesystem functionality