欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

node.js中的fs.lchmod方法使用说明_node.js

程序员文章站 2022-04-27 15:57:15
...
方法说明:

更改文件权限(不解析符号链接)。

语法:

复制代码 代码如下:

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);
});
});
});
};