Skip to content

Instantly share code, notes, and snippets.

@mygoare
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save mygoare/5218e009e226ae59d191 to your computer and use it in GitHub Desktop.

Select an option

Save mygoare/5218e009e226ae59d191 to your computer and use it in GitHub Desktop.
read permission from fs stats mode property
var permString = '0' + (stats.mode & parseInt('777', 8)).toString(8);
e.g.
if stats.mode equal 33261, then it will return '0755'
parseInt('0755', 8) // return 493
parseInt('0666', 8) // return 438, it is default value of node
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment