function statfs
Jump to headingstatfs(path: PathLike,opts?: StatFsOptions & { bigint?: false | undefined; },): Promise<StatsFs>
Parameters Jump to heading
Jump to headingpath: PathLike
optional
Jump to headingopts: StatFsOptions & { bigint?: false | undefined; }
Return Type Jump to heading
Promise<StatsFs>
Fulfills with the {fs.StatFs} object for the given path
.
Jump to headingstatfs(path: PathLike,opts: StatFsOptions & { bigint: true; },): Promise<BigIntStatsFs>
Parameters Jump to heading
Jump to headingpath: PathLike
Jump to headingopts: StatFsOptions & { bigint: true; }
Return Type Jump to heading
Promise<BigIntStatsFs>
Jump to headingstatfs(path: PathLike,opts?: StatFsOptions,): Promise<StatsFs | BigIntStatsFs>
Parameters Jump to heading
Jump to headingpath: PathLike
optional
Jump to headingopts: StatFsOptions
Return Type Jump to heading
Promise<StatsFs | BigIntStatsFs>