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