- fstatSync(fd: number, options?: StatOptions & {
bigint?: false;
}): Stats
-
Parameters
-
fd: number
-
Optional
options: StatOptions & {
bigint?: false;
}
- fstatSync(fd: number, options: StatOptions & {
bigint: true;
}): BigIntStats
-
- fstatSync(fd: number, options?: StatOptions): Stats | BigIntStats
-
Retrieves the
fs.Stats
for the file descriptor.See the POSIX
fstat(2)
documentation for more detail.Since
v0.1.95