📌  相关文章
📜  fs.Stats 类的 Node.js stats.rdev 属性

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

fs.Stats 类的 Node.js stats.rdev 属性

stats.rdev 属性是 fs.Stats 类的一个内置应用程序编程接口,用于获取存储文件的设备的数字(数字/大整数)标识,文件被认为是“特殊的”。

句法:

stats.rdev;

返回值:它返回一个数字或BigInt值,表示文件所在设备的身份,文件被认为是“特殊的”。

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

示例 1:

// Node.js program to demonstrate the   
// stats.rdev property
  
// Accessing fs module
const fs = require('fs');
  
// Calling fs.Stats stats.rdev
// using stat
fs.stat('./filename.txt', (err, stats) => {
    if (err) throw err;
    console.log("using stat: numeric "
        + "identity of the device is " 
        + stats.rdev);
});
  
// Using lstat
fs.lstat('./filename.txt', (err, stats) => {
    if (err) throw err;
    console.log("using lstat: numeric "
        + "identity of the device is " 
        + stats.rdev);
});

输出:

using stat: numeric identity of the device is 0
using lstat: numeric identity of the device is 0

示例 2:

// Node.js program to demonstrate the   
// stats.rdev property
  
// Accessing fs module
const fs = require('fs').promises;
   
// Calling fs.Stats stats.rdev
(async() => {
    const stats = await fs.stat('./filename.txt');
  console.log("using stat synchronous: numeric "
    + "identity of the device is " + stats.rdev);
})().catch(console.error)

输出:

(node:1656) ExperimentalWarning: The fs.promises API 
is experimental 
using stat synchronous: numeric identity of the device is 0

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

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