To use the fstatsync
function from the fs-extra
library in TypeScript, follow these steps:
fs-extra
library:index.ts21 chars2 lines
fs
module:index.ts64 chars3 lines
fstatsync
function to get the stats of a file:index.ts188 chars9 lines
Note that we first use fs.openSync
to open the file and get its file descriptor, then we pass it to fs_extra.fstatsync
to get the file stats. We wrap this code in a try-catch block to handle errors.
This code should output the file stats of your file in the console.
gistlibby LogSnag