Node.js stats.isBlockDevice() 来自 fs.Stats 类的方法
stats.isBlockDevice() 方法是 fs.Stats 类的内置应用程序编程接口,用于检查 fs.Stats 对象是否属于块设备。
句法:
stats.isBlockDevice();
参数:此方法不接受任何参数。
返回值:此方法返回一个布尔值,即如果 fs.Stats 对象描述了块设备,则返回 true,否则返回 false。
以下示例说明了 Node.js 中 stats.isBlockDevice() 方法的使用:
示例 1:
// Node.js program to demonstrate the
// stats.isBlockDevice() method
// Accessing fs module
const fs = require('fs');
// Calling fs.Stats isBlockDevice()
fs.stat('./filename.txt', (err, stats) => {
if (err) throw err;
// console.log(`stats: ${JSON.stringify(stats)}`);
console.log(stats.isBlockDevice());
});
输出:
false
示例 2:
// Node.js program to demonstrate the
// stats.isBlockDevice() method
// Accessing fs module
const fs = require('fs');
// Calling fs.Stats isBlockDevice() method
fs.stat('./filename.txt', (err, stats) => {
if (err) throw err;
// console.log(
// `stats: ${JSON.stringify(stats)}`);
if (stats.isBlockDevice()) {
console.log("fs.Stats describes a "
+ "block device");
} else {
console.log("fs.Stats does not "
+ "describe a block device");
}
});
输出:
fs.Stats does not describe a block device
注意:以上程序将通过使用node filename.js
命令编译运行,并正确使用 file_path。
参考: https://nodejs.org/api/fs.html#fs_stats_isblockdevice