Node.js stats.isFIFO()方法

原文:https://www.geeksforgeeks.org/node-js-stats-isfifo-method/

stats.isFIFO() 方法是 fs 的内置应用编程接口。用于检查文件系统是否。Stats 对象描述了先进先出(FIFO)管道与否。

语法:

stats.isFIFO();

参数:此方法不接受任何参数。

返回值:这个方法返回一个布尔值,如果是 fs 则为真。Stats 对象描述先进先出(FIFO)管道,否则为 false。

下面的例子说明了 stats.isFIFO()方法在 Node.js 中的使用:

例 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 _ is FIFO