How to use the lchownSync function from fs-extra
Find comprehensive JavaScript fs-extra.lchownSync code examples handpicked from public code repositorys.
GitHub: encounter/mototools
124 125 126 127 128 129 130 131 132 133
logwarn('Symlink target doesn\'t exist: ' + realpath); } } if (data.hasOwnProperty('uid') && data.hasOwnProperty('gid')) { logdebug('Setting UID ' + data.uid + ', GID ' + data.gid + ' for ' + path); fs.lchownSync(path, data.uid, data.gid); if (followSymlink) { fs.chownSync(realpath, data.uid, data.gid); } }
0
1
2
fs-extra.readFileSync is the most popular function in fs-extra (9724 examples)