方法說明:
同步版的 lchmod() 。
文法:
fs.lchmodSync(fd, mode)
由於方法屬於fs模組,使用前需要引入fs模組(var fs= require(“fs”) )
接收參數:
fd 檔案描述子
mode 檔案權限
原始碼:
fs.lchmodSync = function(path, mode) {
var fd = fs.openSync(path, constants.O_WRONLY | constants.O_SYMLINK);
// prefer to return the chmod error, if one occurs,
// but still try to close, and report closing errors if they occur.
var err, err2;
try {
var ret = fs.fchmodSync(fd, mode);
} catch (er) {
err = er;
}
try {
fs.closeSync(fd);
} catch (er) {
err2 = er;
}
if (err || err2) throw (err || err2);
return ret;
};
}