fs.chown()方法用于异步更改给定路径的所有者和组。该函数接受用户ID和组ID,这些用户ID和组ID可用于设置各自的所有者和组。它具有一个回调函数,该函数返回该函数失败时可能发生的任何错误。
用法:
fs.chown( path, uid, gid, callback )
参数:此方法接受上述和以下所述的四个参数:
- path:它是一个字符串,Buffer或URL,表示必须更改所有者和组的文件的路径。
- uid:该数字表示与要设置的所有者相对应的用户ID。
- gid:该数字表示与要设置的组相对应的组ID。
- callback:该方法执行时将调用该函数。
- err:如果方法失败,将引发错误。
以下示例说明了Node.js中的fs.chown()方法:
范例1:本示例显示所有者的设置。
// Node.js program to demonstrate the
// fs.chown() method
// Import the filesystem module
const fs = require('fs');
let filepath = "example_file.txt";
// Set the owner to a new one keeping the group same
// New owner is "geeksforgeeks" with user id 1541
fs.chown(filepath, 1541, 999, (error) => {
if (error)
console.log("Error Code:", error);
else
console.log("uid and gid set successfully");
});
在运行代码之前:
xubuntu@xubuntu:~/Desktop/fs-chown$ ls -l total 8 -rw-rw--w- 1 xubuntu xubuntu 4 Apr 25 04:08 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 25 04:08 index.js
代码输出:
Given uid and gid set successfully
运行代码后:
xubuntu@xubuntu:~/Desktop/fs-chown$ ls -l total 8 -rw-rw--w- 1 geeksforgeeks xubuntu 4 Apr 25 04:08 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 25 04:08 index.js
范例2:本示例显示了组的设置。
// Node.js program to demonstrate the
// fs.chown() method
// Import the filesystem module
const fs = require('fs');
let filepath = "example_file.txt";
// Set the owner and group both to a new one
// New owner is "sam" with owner id 1500
// New group is "author" with group id 1021
fs.chown(filepath, 1500, 1021, (error) => {
if (error)
console.log("Error Code:", error);
else
console.log("uid and gid set successfully");
});
在运行代码之前:
xubuntu@xubuntu:~/Desktop/fs-chown$ ls -l total 8 -rw-rw--w- 1 xubuntu xubuntu 4 Apr 25 04:09 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 25 04:09 index.js
代码输出:
Given uid and gid set successfully
运行代码后:
xubuntu@xubuntu:~/Desktop/fs-chown$ ls -l total 8 -rw-rw--w- 1 sam author 4 Apr 25 04:09 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 25 04:09 index.js
参考: https://nodejs.org/api/fs.html#fs_fs_chown_path_uid_gid_callback
相关用法
- Node.js GM thumbnail()用法及代码示例
- Node.js GM raise()用法及代码示例
- Node.js GM resize()用法及代码示例
- Node.js GM transparent()用法及代码示例
- Node.js GM sepia()用法及代码示例
- Node.js GM magnify()用法及代码示例
- Node.js GM threshold()用法及代码示例
- Node.js GM whiteThreshold()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM write()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Node.js | fs.chown() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。