function fstat
Jump to headingfstat(fd: number,callback: (err: ErrnoException | null,stats: Stats,) => void,): voidInvokes the callback with the fs.Stats for the file descriptor.
See the POSIX fstat(2) documentation for more detail.
Parameters Jump to heading
Jump to headingfd: numberJump to headingcallback: (err: ErrnoException | null,stats: Stats,) => voidReturn Type Jump to heading
voidJump to headingfstat(fd: number,options: (StatOptions & { bigint?: false | undefined; }) | undefined,callback: (err: ErrnoException | null,stats: Stats,) => void,): voidParameters Jump to heading
Jump to headingfd: numberJump to headingoptions: (StatOptions & { bigint?: false | undefined; }) | undefinedJump to headingcallback: (err: ErrnoException | null,stats: Stats,) => voidReturn Type Jump to heading
voidJump to headingfstat(fd: number,options: StatOptions & { bigint: true; },callback: (err: ErrnoException | null,stats: BigIntStats,) => void,): voidParameters Jump to heading
Jump to headingfd: numberJump to headingoptions: StatOptions & { bigint: true; }Jump to headingcallback: (err: ErrnoException | null,stats: BigIntStats,) => voidReturn Type Jump to heading
voidJump to headingfstat(fd: number,options: StatOptions | undefined,callback: (err: ErrnoException | null,stats: Stats | BigIntStats,) => void,): voidParameters Jump to heading
Jump to headingfd: numberJump to headingoptions: StatOptions | undefinedJump to headingcallback: (err: ErrnoException | null,stats: Stats | BigIntStats,) => voidReturn Type Jump to heading
void