当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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




相关用法


注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 Node.js | stats.ino Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。