来自 fs.Stats 类的 Node.js stats.blocks 属性
stats.blocks 属性是 fs.Stats 类的内置应用程序编程接口,用于获取为文件分配的块数。
句法:
stats.blocks;
返回值:它返回一个数字或 BigInt 值,表示为文件分配的块数。
下面的示例说明了 Node.js 中 stats.blocks 属性的使用:
示例 1:
// Node.js program to demonstrate the
// stats.blocks property
// Accessing fs module
const fs = require('fs');
// Calling fs.Stats stats.blocks
// using stat
fs.stat('./', (err, stats) => {
if (err) throw err;
// The number of blocks allocated
// for the file
console.log("using stat: "
+ stats.blocks);
});
// Using lstat
fs.lstat('./', (err, stats) => {
if (err) throw err;
// The number of blocks allocated
// for the file
console.log("using lstat: "
+ stats.blocks);
});
输出:
using stat: 8
using lstat: 8
示例 2:
// Node.js program to demonstrate the
// stats.blocks property
// Accessing fs module
const fs = require('fs').promises;
// Calling fs.Stats stats.blocks
(async () => {
const stats = await fs.stat('./filename.txt');
// The number of blocks allocated
// for the file
console.log("using stat synchronous: "
+ stats.blocks);
})().catch(console.error)
输出:
using stat synchronous: 8
注意:以上程序将通过使用node filename.js
命令编译运行,并正确使用 file_path。
参考: https://nodejs.org/api/fs.html#fs_stats_blocks