function stat
Jump to headingstat(path: PathLike,opts?: StatOptions & { bigint?: false | undefined; },): Promise<Stats>
Parameters Jump to heading
Jump to headingpath: PathLike
optional
Jump to headingopts: StatOptions & { bigint?: false | undefined; }
Return Type Jump to heading
Promise<Stats>
Fulfills with the {fs.Stats} object for the given path
.
Jump to headingstat(path: PathLike,opts: StatOptions & { bigint: true; },): Promise<BigIntStats>
Parameters Jump to heading
Jump to headingpath: PathLike
Jump to headingopts: StatOptions & { bigint: true; }
Return Type Jump to heading
Promise<BigIntStats>
Jump to headingstat(path: PathLike,opts?: StatOptions,): Promise<Stats | BigIntStats>
Parameters Jump to heading
Jump to headingpath: PathLike
optional
Jump to headingopts: StatOptions
Return Type Jump to heading
Promise<Stats | BigIntStats>