ZenFS
    Preparing search index...

    Function mkdir

    • Asynchronous mkdir(2) - create a directory.

      Parameters

      • this: unknown
      • path: PathLike

        A path to a file. If a URL is provided, it must use the file: protocol.

      • options: MakeDirectoryOptions & { recursive: true }

        Either the file mode, or an object optionally specifying the file mode and whether parent folders should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to 0o777.

      Returns Promise<string | undefined>

    • Asynchronous mkdir(2) - create a directory.

      Parameters

      • this: unknown
      • path: PathLike

        A path to a file. If a URL is provided, it must use the file: protocol.

      • Optionaloptions: Mode | MakeDirectoryOptions & { recursive?: false } | null

        Either the file mode, or an object optionally specifying the file mode and whether parent folders should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to 0o777.

      Returns Promise<void>

    • Asynchronous mkdir(2) - create a directory.

      Parameters

      • this: unknown
      • path: PathLike

        A path to a file. If a URL is provided, it must use the file: protocol.

      • Optionaloptions: Mode | MakeDirectoryOptions | null

        Either the file mode, or an object optionally specifying the file mode and whether parent folders should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to 0o777.

      Returns Promise<string | undefined>