方法說明:
更改檔案所有權(不解析符號連結)。
文法:
fs.lchown(path, uid, gid, [callback(err)])
由於方法屬於fs模組,使用前需要引入fs模組(var fs= require(“fs”) )
接收參數:
path 目錄路徑
uid 使用者ID
gid 群體認同 (指共享資源系統使用者的身分)
callback 回呼 ,傳遞異常參數 err
範例:
fs.lchown('content.txt', uid, gid, function(err){
if(err){
console.log(err);
}else{
console.log("change done");
}
})
原始碼:
fs.lchown = function(path, uid, gid, callback) {
callback = maybeCallback(callback);
fs.open(path, constants.O_WRONLY | constants.O_SYMLINK, function(err, fd) {
if (err) {
callback(err);
return;
}
fs.fchown(fd, uid, gid, callback);
});
};