Skip to content

Instantly share code, notes, and snippets.

@popomore
Created May 15, 2013 17:31
Show Gist options
  • Save popomore/5585736 to your computer and use it in GitHub Desktop.
Save popomore/5585736 to your computer and use it in GitHub Desktop.
nodejs 文件权限转换
var stat = fs.statSync(dir);
(stat.mode & 07777).toString(8); // => e.g. 755
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment