Skip to main content

statfs

function statfs
Jump to headingstatfs(
path: PathLike,
opts?: StatFsOptions & { bigint?: false | undefined; },
): Promise<StatsFs>

Parameters Jump to heading

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>
Back to top