Function realpath

  • Asynchronous realpath(3) - return the canonicalized absolute pathname.

    Parameters

    • path: PathLike

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

    • options: BufferEncodingOption

      The encoding (or an object specifying the encoding), used as the encoding of the result. Defaults to 'utf8'.

    Returns Promise<Buffer>

    handle options

  • Parameters

    • path: PathLike
    • Optionaloptions:
          | null
          | "ascii"
          | "utf8"
          | "utf-8"
          | "utf16le"
          | "utf-16le"
          | "ucs2"
          | "ucs-2"
          | "base64"
          | "base64url"
          | "latin1"
          | "binary"
          | "hex"
          | ObjectEncodingOptions

    Returns Promise<string>