function fstatSync
fstatSync(fd: number,options?: StatOptions & { bigint?: false | undefined; },): Stats
Deprecated
Retrieves the fs.Stats
for the file descriptor.
See the POSIX fstat(2)
documentation for more detail.
optional
options: StatOptions & { bigint?: false | undefined; }
fstatSync(fd: number,options: StatOptions & { bigint: true; },): BigIntStats
Deprecated
options: StatOptions & { bigint: true; }
fstatSync(fd: number,options?: StatOptions,): Stats | BigIntStats
Deprecated
optional
options: StatOptions