方法說明:
更改檔案權限(檔案描述符)。
文法:
fs.fchmod(fd, mode, [callback(err)])
由於方法屬於fs模組,使用前需要引入fs模組(var fs= require(“fs”) )
接收參數:
fd 為檔案描述子
mode 檔案權限
callback 回調,且傳遞異常參數err
範例:
fs.open('content.txt', 'a', function (err, fd) {
if (err) {
throw err;
}
fs.fchmod(fd, 0777, function(err){
if (err) {
throw err;
}
console.log('fchmod complete');
fs.close(fd, function () {
console.log('Done');
});
})
});
原始碼:
fs.fchmod = function(fd, mode, callback) {
binding.fchmod(fd, modeNum(mode), makeCallback(callback));
};