VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-stats-blksize-property-from-fs-stats-class/

⇱ Node.js stats.blksize Property from fs.Stats Class - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js stats.blksize Property from fs.Stats Class

Last Updated : 26 Jun, 2020
The stats.blksize property is an inbuilt application programming interface of the fs.Stats class is used to get the block size for I/O operations in the file system in bytes. Syntax:
stats.blksize;
Return Value: It returns a number or BigInt value which represents the block size for I/O operations in the file system in bytes. Below examples illustrate the use of stats.blksize in Node.js: Example 1: Output:
using stat: the block size for I/O operations 
in the file in bytes is 4096
using lstat: the block size for I/O operations 
in the file in bytes is 4096
Example 2: Output:
(node:6376) ExperimentalWarning: The fs.promises
API is experimental
using stat synchronous: the block size for I/O 
operations in the file system in bytes is 4096
Note: The above program will compile and run by using the node filename.js command and use the file_path correctly. Reference: https://nodejs.org/api/fs.html#fs_stats_blksize
Comment

Explore