Home > Web Front-end > JS Tutorial > body text

Instructions for using the fs.chmod method in node.js_node.js

WBOY
Release: 2016-05-16 16:25:46
Original
1101 people have browsed it

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:

Copy code The code is as follows:

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:

Copy code The code is as follows:

fs.chmod = function(path, mode, callback) {
callback = makeCallback(callback);
if (!nullCheck(path, callback)) return;
binding.chmod(pathModule._makeLong(path),
                 modeNum(mode),
                  callback);
};
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!