- Preparing search index...
- The search index is not available
bun-types
- fstat(fd: number, callback: ((err: SystemError, stats: "fs".Stats) => void)): void
-
Returns void
- fstat(fd: number, options: "fs".StatOptions & { bigint?: false }, callback: ((err: SystemError, stats: "fs".Stats) => void)): void
-
Returns void
- fstat(fd: number, options: "fs".StatOptions & { bigint: true }, callback: ((err: SystemError, stats: "fs".BigIntStats) => void)): void
-
Returns void
- fstat(fd: number, options: "fs".StatOptions, callback: ((err: SystemError, stats: "fs".Stats | "fs".BigIntStats) => void)): void
-
Returns void
- fstat(fd: number, callback: ((err: SystemError, stats: "fs".Stats) => void)): void
-
Returns void
- fstat(fd: number, options: "fs".StatOptions & { bigint?: false }, callback: ((err: SystemError, stats: "fs".Stats) => void)): void
-
Returns void
- fstat(fd: number, options: "fs".StatOptions & { bigint: true }, callback: ((err: SystemError, stats: "fs".BigIntStats) => void)): void
-
Returns void
- fstat(fd: number, options: "fs".StatOptions, callback: ((err: SystemError, stats: "fs".Stats | "fs".BigIntStats) => void)): void
-
Returns void
Invokes the callback with the
fs.Stats
for the file descriptor.See the POSIX
fstat(2)
documentation for more detail.Since
v0.0.67