In nodejs, the arguments of fs.utimes should be written in what format?e.g.atime,mtime.
API: fs.utimes(path, atime, mtime, callback)
使用fs.chmod(path, mode, callback)我将模式设置为777.它没有正常工作.但是当我设置它时0777,它起作用了.
所以我想知道chmod 777和之间的区别是什么chmod 0777?