Interface Filesystem

Interface for filesystem functionality

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>;
}

Properties

config: FilesystemOptions<ConfigMounts>

Get the filesystem configuration

constants: any

Get filesystem constants

credentials: any

Get filesystem credentials

devfs: any

Get the device filesystem

fs: any

Get the asynchronous filesystem instance

fsSync: any

Get the synchronous filesystem instance

mounts: Map<string, any>

Get mounted filesystems

Methods

  • Get filesystem descriptions

    Parameters

    • Optionalt: TFunction<"translation", undefined> | (key: string) => string

      Optional translation function

    Returns Map<string, string>

  • 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>