function statfs
Jump to headingstatfs(): voidAsynchronous statfs(2). Returns information about the mounted file system which
contains path. The callback gets two arguments (err, stats) where statsis an fs.StatFs object.
In case of an error, the err.code will be one of Common System Errors.
Parameters Jump to heading
Jump to headingpath: PathLikeA path to an existing file or directory on the file system to be queried.
Jump to headingcallback: (err: ErrnoException | null,stats: StatsFs,) => voidReturn Type Jump to heading
voidJump to headingstatfs(path: PathLike,options: (StatFsOptions & { bigint?: false | undefined; }) | undefined,callback: (err: ErrnoException | null,stats: StatsFs,) => void,): voidParameters Jump to heading
Jump to headingpath: PathLikeJump to headingoptions: (StatFsOptions & { bigint?: false | undefined; }) | undefinedJump to headingcallback: (err: ErrnoException | null,stats: StatsFs,) => voidReturn Type Jump to heading
voidJump to headingstatfs(path: PathLike,options: StatFsOptions & { bigint: true; },callback: (err: ErrnoException | null,stats: BigIntStatsFs,) => void,): voidParameters Jump to heading
Jump to headingpath: PathLikeJump to headingoptions: StatFsOptions & { bigint: true; }Jump to headingcallback: (err: ErrnoException | null,stats: BigIntStatsFs,) => voidReturn Type Jump to heading
voidJump to headingstatfs(path: PathLike,options: StatFsOptions | undefined,callback: (err: ErrnoException | null,stats: StatsFs | BigIntStatsFs,) => void,): voidParameters Jump to heading
Jump to headingpath: PathLikeJump to headingoptions: StatFsOptions | undefinedJump to headingcallback: (err: ErrnoException | null,stats: StatsFs | BigIntStatsFs,) => voidReturn Type Jump to heading
void