Created
February 6, 2015 16:57
-
-
Save bahamas10/a59d8f771e2216275e4a to your computer and use it in GitHub Desktop.
nodejs mkdir mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > fs.mkdirSync('test-dir', 0777) | |
| undefined | |
| > (fs.statSync('test-dir').mode & 0777).toString(8) | |
| '755' | |
| > process.version | |
| 'v0.10.33' |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it works by modifying the umask
now