文件操作 - README.md
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/atom/resources/app/apm/node_modules/mkpath/README.md
编辑文件内容
# mkpath Make all directories in a path, like `mkdir -p`. ## How to use var mkpath = require('mkpath'); mkpath('red/green/violet', function (err) { if (err) throw err; console.log('Directory structure red/green/violet created'); }); mkpath.sync('/tmp/blue/orange', 0700); ### mkpath(path, [mode = 0777 & (~process.umask()),] [callback]) Create all directories that don't exist in `path` with permissions `mode`. When finished, `callback(err)` fires with the error, if any. ### mkpath.sync(path, [mode = 0777 & (~process.umask())]); Synchronous version of the same. Throws error, if any. ## License This software is released under the [MIT license](http://www.opensource.org/licenses/MIT).
修改文件时间
将文件时间修改为当前时间的前一年
删除文件