Function statfs

  • Parameters

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

    Returns Promise<fs.StatsFs>

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

    Node v18.15.0

  • Parameters

    • path: PathLike
    • opts: StatFsOptions & {
          bigint: true;
      }

    Returns Promise<fs.BigIntStatsFs>

  • Parameters

    • path: PathLike
    • Optionalopts: StatFsOptions

    Returns Promise<fs.StatsFs | fs.BigIntStatsFs>