Skip to content

isaacs/chmodr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Description

Has the same effect as the command line command: chmod -R.

Install

npm i --save chmodr

Usage

Takes the same arguments as fs.chmod()

chmodr(path, mode, callback)

  • path <string> | <Buffer> | <URL>
  • mode <integer>
  • callback <Function>
    • err <Error>

Example

var chmodr = require('chmodr');

chmodr('/var/www/my/test/folder', 0o777, (err) => {
  if (err) {
    console.log('Failed to execute chmod', err);
  } else {
    console.log('Success');
  }
});

About

Like `chmod -R` in node

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published