How to use the fchmodSync function from graceful-fs
Find comprehensive JavaScript graceful-fs.fchmodSync code examples handpicked from public code repositorys.
GitHub: canarddu38/DUCKSPLOIT
421 422 423 424 425 426 427 428 429 430 431 432
// chmod exports.chmod = Promise.promisify(fs.chmod); exports.chmodSync = fs.chmodSync; exports.fchmod = Promise.promisify(fs.fchmod); exports.fchmodSync = fs.fchmodSync; exports.lchmod = Promise.promisify(fs.lchmod); exports.lchmodSync = fs.lchmodSync; // chown
9
48
0
+ 7 other calls in file
graceful-fs.promises is the most popular function in graceful-fs (1135 examples)