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