Class FilesystemExperimental

Jay Mathis code@mathis.network (https://github.com/mathiscode)

The Filesystem class provides a virtual filesystem for the ecmaOS kernel.

ZenFS

Constructors

Accessors

Methods

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

  • Experimental

    Parameters

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

    Returns Map<string, string>

  • Experimental

    Checks if a file or directory exists at the given path.

    Parameters

    • path: string

      The path to check.

    Returns Promise<boolean>

    A promise that resolves to true if the path exists, false otherwise.

    A shortcut for kernel.filesystem.fs.exists

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

  • Experimental

    Returns the default filesystem options with the given extensions.

    Type Parameters

    • T extends ConfigMounts

    Parameters

    • Optionalextensions: Partial<FilesystemOptions<T>>

      The extensions to apply to the default options.

    Returns FilesystemOptions<T>

    The filesystem options with the given extensions.