📜  Node.js stats.ino 属性

📅  最后修改于: 2022-05-13 01:56:47.819000             🧑  作者: Mango

Node.js stats.ino 属性

stats.ino属性是 fs.Stats 类的内置应用程序编程接口,用于获取文件系统指定的文件的“Inode”编号。

句法:

stats.ino;

参数:此属性没有任何参数。

返回值:它返回一个数字或 BigInt 值,它表示文件系统指定的文件的“Inode”编号。

以下示例说明了 Node.js 中 stats.ino 属性的使用:

示例 1:

// Node.js program to demonstrate the   
// stats.ino Property
  
// Accessing fs module
const fs = require('fs');
  
// Calling stats.ino property from
// fs.Stats  class
// For files using stat
fs.stat('./filename.txt', (err, stats) => {
    if (err) throw err;
    console.log("using stat: the \"Inode\" "
        + "number of the file is  " + stats.ino);
});
  
// Using lstat
fs.lstat('./filename.txt', (err, stats) => {
    if (err) throw err;
    console.log("using lstat: the \"Inode\" "
        + "number of the file is  " + stats.ino);
});
  
// For directories using stat
fs.stat('./', (err, stats) => {
    if (err) throw err;
    console.log("using stat: the \"Inode\" "
        + "number of the file is  " + stats.ino);
});
  
//using lstat
fs.lstat('./', (err, stats) => {
    if (err) throw err;
    console.log("using lstat: the \"Inode\" "
    + "number of the file is  " + stats.ino);
});

输出:

using stat: the "Inode" number of the file is  1125899907737972
using lstat: the "Inode" number of the file is  1125899907737972
using stat: the "Inode" number of the file is  14918173765820528
using lstat: the "Inode" number of the file is  14918173765820528

示例 2:

// Node.js program to demonstrate the   
// stats.ino Property
  
// Accessing fs module
const fs = require('fs').promises;
   
// Calling stats.ino property from
// fs.Stats class
(async() => {
  const stats = await fs.stat('./filename.txt');
   
  // Using stat synchronous
  console.log("The \"Inode\" number "
    + "of the file is  "+stats.ino);
})().catch(console.error)

输出:

The "Inode" number of the file is  1125899907737972

注意:以上程序将通过使用node filename.js命令编译运行,并正确使用 file_path。

参考: https://nodejs.org/api/fs.html#fs_stats_ino