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