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
相关用法
- Node.js GM magnify()用法及代码示例
- Node.js GM modulate()用法及代码示例
- Node.js GM minify()用法及代码示例
- Node.js GM write()用法及代码示例
- Node.js GM whiteThreshold()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM spread()用法及代码示例
- Node.js GM despeckle()用法及代码示例
- Node.js GM crop()用法及代码示例
- Node.js GM gaussian()用法及代码示例
- Node.js GM emboss()用法及代码示例
- Node.js GM solarize()用法及代码示例
- Node.js GM shave()用法及代码示例
- Node.js GM threshold()用法及代码示例
- Node.js GM recolor()用法及代码示例
注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 Node.js | stats.ino Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。