Method description:
This method rewrites the read and write permissions of the file in an asynchronous manner.
The callback after the operation is completed only receives one parameter, and exception information may appear.
Grammar:
fs.chmod(path, mode, callback)
Since this method belongs to the fs module, the fs module needs to be introduced before use (var fs = require(“fs”) )
Receive parameters:
1. path File path
2. mode read and write permissions (eg: 777)
3. callback callback
Example:
var fs = require('fs'),
oldFilename = "./processId.txt",
newFilename = "./processIdOld.txt";
fs.chmod(oldFilename, 777, function (err) {
fs.rename(oldFilename, newFilename, function (err) {
fs.lstat(newFilename, function (err, stats) {
var isSymLink = stats.isSymbolicLink();
});
});
});
Source code:
fs.chmod = function(path, mode, callback) {
callback = makeCallback(callback);
if (!nullCheck(path, callback)) return;
binding.chmod(pathModule._makeLong(path),
modeNum(mode),
callback);
};
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn