方法說明:
更改文件權限(不解析符號鏈接)。
語法:
代碼如下:
fs.lchmod(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.lchmod(fd, 0777, function(err){
if (err) {
throw err;
}
console.log('fchmod complete');
fs.close(fd, function () {
console.log('Done');
});
})
});
源碼:
代碼如下:
fs.lchmod = function(path, mode, callback) {
callback = maybeCallback(callback);
fs.open(path, constants.O_WRONLY | constants.O_SYMLINK, function(err, fd) {
if (err) {
callback(err);
return;
}
// prefer to return the chmod error, if one occurs,
// but still try to close, and report closing errors if they occur.
fs.fchmod(fd, mode, function(err) {
fs.close(fd, function(err2) {
callback(err || err2);
});
});
});
};