来自 fs 的 Node.js stats.gid 属性。统计等级
原文:https://www . geesforgeks . org/node-js-stats-GID-property-from-fs-stats-class/
stats.gid 属性是 fs 内置的应用编程接口。Stats 类,用于获取文件所属组的数字(number / bigint)标识。
语法:
stats.gid;
返回值:它返回一个数字或 BigInt 值,代表拥有该文件的组的身份。
下面的例子说明了 stats.gid 属性在 Node.js 中的使用:
例 1:
// Node.js program to demonstrate the
// stats.gid property
// Accessing fs module
const fs = require('fs');
// Calling fs.Stats stats.gid
// for directory using stat
fs.stat('./', (err, stats) => {
if (err) throw err;
console.log("using stat: numeric "
+ "identity of the group is "
+ stats.gid);
});
// Using lstat
fs.lstat('./', (err, stats) => {
if (err) throw err;
console.log("using lstat: numeric "
+ "identity of the group is "
+ stats.gid);
});
// For file
// Using stat
fs.stat('./filename.txt', (err, stats) => {
if (err) throw err;
console.log("using stat: numeric "
+ "identity of the group is "
+ stats.gid);
});
// Using lstat
fs.lstat('./filename.txt', (err, stats) => {
if (err) throw err;
console.log("using lstat: numeric "
+ "identity of the group is "
+ stats.gid);
});
输出:
using stat: numeric identity of the group is 5687
using lstat: numeric identity of the group is 5687
using stat: numeric identity of the group is 5687
using lstat: numeric identity of the group is 5687
例 2:
// Node.js program to demonstrate the
// stats.gid property
// Accessing fs module
const fs = require('fs').promises;
// Calling fs.Stats stats.gid
(async () => {
const stats = await fs.stat('./filename.txt');
console.log("using stat synchronous: numeric"
+ " identity of the group is " + stats.gid);
})().catch(console.error)
输出:
(node:15204) ExperimentalWarning: The fs.promises API
is experimental
using stat synchronous: numeric identity of the group is 5687
注意:以上程序使用node filename.js
命令编译运行,正确使用 file_path。该应用编程接口将在 POSIX 系统中正常工作。在像 WINDOWS 这样的其他系统中,它将返回 0。
参考资料:https://nodejs . org/API/fs . html # fs _ stats _ GID
版权属于:月萌API www.moonapi.com,转载请注明出处