方法說明:
同步版的 lchown() 。
文法:
fs.lchownSync(path, uid, gid)
由於方法屬於fs模組,使用前需要引入fs模組(var fs= require(“fs”) )
接收參數:
path 目錄路徑
uid 使用者ID
gid 群體認同 (指共享資源系統使用者的身分)
範例:
fs.lchownSync('content.txt', uid, gid);
原始碼:
fs.lchownSync = function(path, uid, gid) {
var fd = fs.openSync(path, constants.O_WRONLY | constants.O_SYMLINK);
return fs.fchownSync(fd, uid, gid);
};