来自 fs 的 node . js stats . isracterdevice()方法。统计等级
原文:https://www . geesforgeks . org/node-js-stats-is racterdevice-method-from-fs-stats-class/
stats . is racterdevice()方法是 fs 内置的应用编程接口。用于检查文件系统是否。Stats 对象是否属于字符设备。
语法:
stats.isCharacterDevice();
参数:此方法不接受任何参数。
返回值:这个方法返回一个布尔值,如果是 fs 则为真。Stats 对象描述字符设备,否则为 false。
下面的例子说明了 stats.isCharacterDevice()方法在 Node.js 中的使用:
例 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。
参考:T2】https://nodejs.org/api/fs.html#fs_stats_ischaracterdevice
版权属于:月萌API www.moonapi.com,转载请注明出处