method FileHandle.stat
#FileHandle.stat(opts?: StatOptions & { bigint?: false | undefined; }): Promise<Stats>
Parameters #
optional
#opts: StatOptions & { bigint?: false | undefined; }
Return Type #
Promise<Stats>
Fulfills with an {fs.Stats} for the file.
#FileHandle.stat(opts: StatOptions & { bigint: true; }): Promise<BigIntStats>
Parameters #
#opts: StatOptions & { bigint: true; }
Return Type #
Promise<BigIntStats>
#FileHandle.stat(opts?: StatOptions): Promise<Stats | BigIntStats>
Parameters #
optional
#opts: StatOptions
Return Type #
Promise<Stats | BigIntStats>