📅  最后修改于: 2023-12-03 14:44:38.576000             🧑  作者: Mango
fs.filehandle.chown()
方法使用文件的文件描述符来更改文件的所有者和所属用户组。此方法是异步方法,因此需要使用回调函数来处理结果。
filehandle.chown(uid, gid, (error) => {});
该方法接受以下参数:
uid
:一个整数,表示新的文件所有者的用户 ID;gid
:一个整数,表示新的文件所属用户组的组 ID;callback
:一个回调函数,当方法执行成功或出现错误时将被调用,它接收一个错误对象作为参数。如果没有错误,则该参数将为 null
。该方法没有返回值。
以下代码演示如何使用 fs.promises.open()
方法获取文件描述符,然后使用 fs.filehandle.chown()
方法更改文件所有者和所属用户组。
const fs = require('fs').promises;
async function changeOwnerAndGroup(filepath, uid, gid) {
const filehandle = await fs.open(filepath, 'r');
await filehandle.chown(uid, gid);
await filehandle.close();
}
changeOwnerAndGroup('/tmp/test.txt', 1000, 1000)
.then(() => {
console.log('File owner and group updated successfully.');
})
.catch((error) => {
console.error('An error occurred:', error);
});
fs.promises.open()
方法获取文件的文件描述符,然后才能调用 fs.filehandle.chown()
方法。