stats.dev属性是fs.Stats类的内置应用程序编程接口,用于获取文件所在设备的数字(数字/bigint)标识。
用法:
stats.dev;
参数:此属性不接受任何参数。
返回值:它返回一个数字或BigInt值,该值表示文件所在设备的标识。
以下示例说明了Node.js中stats.dev属性的用法:
范例1:
// Node.js program to demonstrate the
// stats.dev Property
// Accessing fs module
const fs = require('fs');
// Calling fs.Stats stats.dev
// using stat for file
fs.stat('./filename.txt', (err, stats) => {
if (err) throw err;
console.log("using stat:the numeric "
+ "identity of the device is "
+ stats.dev);
});
//using lstat for file
fs.lstat('./filename.txt', (err, stats) => {
if (err) throw err;
console.log("using lstat:the numeric "
+ "identity of the device is "
+ stats.dev);
});
//using stat for directory
fs.stat('./', (err, stats) => {
if (err) throw err;
console.log("using stat:the numeric "
+ "identity of the device is "
+ stats.dev);
});
//using lstat for directory
fs.lstat('./', (err, stats) => {
if (err) throw err;
console.log("using lstat:the numeric "
+ "identity of the device is "
+ stats.dev);
});
输出:
using stat:the numeric identity of the device is 891323748 using lstat:the numeric identity of the device is 891323748 using stat:the numeric identity of the device is 891323748 using lstat:the numeric identity of the device is 891323748
范例2:
// Node.js program to demonstrate the
// stats.dev Property
// Accessing fs module
const fs = require('fs').promises;
// Calling stats.dev property from
// fs.Stats class
(async () => {
const stats = await fs.stat(
'./fs_stat_dev.txt');
//using stat synchronous
console.log("The numeric identity "
+ "of the device is " + stats.dev);
})().catch(console.error)
输出:
The numeric identity of the device is 891323748
注意:上面的程序将通过使用以下命令进行编译和运行node filename.js
命令并正确使用file_path。
参考: https://nodejs.org/api/fs.html#fs_stats_dev
相关用法
- Node.js GM write()用法及代码示例
- Node.js GM drawLine()用法及代码示例
- Node.js GM drawRectangle()用法及代码示例
- Node.js GM paint()用法及代码示例
- Node.js GM orderedDither()用法及代码示例
- Node.js GM roll()用法及代码示例
- Node.js GM segment()用法及代码示例
- Node.js GM quality()用法及代码示例
- Node.js GM drawArc()用法及代码示例
- Node.js GM drawPolyline()用法及代码示例
- Node.js GM drawBezier()用法及代码示例
- Node.js GM drawCircle()用法及代码示例
- Node.js GM drawEllipse()用法及代码示例
注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 Node.js | stats.dev Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。