Function statfs

  • Parameters

    • this: V_Context
    • path: PathLike
    • Optionalopts: StatFsOptions & { bigint?: false }

    Returns Promise<fs.StatsFs>

    Fulfills with an {fs.StatFs} for the file system.

    Node v18.15.0

  • Parameters

    • this: V_Context
    • path: PathLike
    • opts: StatFsOptions & { bigint: true }

    Returns Promise<fs.BigIntStatsFs>

    Fulfills with an {fs.StatFs} for the file system.

    Node v18.15.0

  • Parameters

    • this: V_Context
    • path: PathLike
    • Optionalopts: StatFsOptions

    Returns Promise<fs.StatsFs | fs.BigIntStatsFs>

    Fulfills with an {fs.StatFs} for the file system.

    Node v18.15.0