方法說明:
更改文件所有權。
文法:
fs.chown(path, uid, gid, [callback(err)])
由於方法屬於fs模組,使用前需要引入fs模組(var fs= require(“fs”) )
接收參數:
path 目錄路徑
uid 使用者ID
gid 群體認同 (指共享資源系統使用者的身分)
callback 回呼 ,傳遞異常參數 err
範例:
fs.chown('content.txt', uid, gid, function(err){
if(err){
console.log(err);
}else{
console.log("change done");
}
})
原始碼:
fs.chown = function(path, uid, gid, callback) {
callback = makeCallback(callback);
if (!nullCheck(path, callback)) return;
binding.chown(pathModule._makeLong(path), uid, gid, callback);
};