function statfs
statfs(path: PathLike,opts?: StatFsOptions & { bigint?: false | undefined; },): Promise<StatsFs>Deprecated
path: PathLikeoptional
opts: StatFsOptions & { bigint?: false | undefined; }Promise<StatsFs>Fulfills with the {fs.StatFs} object for the given path.
statfs(path: PathLike,opts: StatFsOptions & { bigint: true; },): Promise<BigIntStatsFs>Deprecated
path: PathLikeopts: StatFsOptions & { bigint: true; }Promise<BigIntStatsFs>statfs(path: PathLike,opts?: StatFsOptions,): Promise<StatsFs | BigIntStatsFs>Deprecated
path: PathLikeoptional
opts: StatFsOptionsPromise<StatsFs | BigIntStatsFs>