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