- Timestamp:
- 03/14/14 12:36:58 (11 years ago)
- Location:
- Dev/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk
- Property svn:ignore
-
old new 1 1 build 2 quod-erat.git
-
- Property svn:ignore
-
Dev/trunk/node_modules/grunt/node_modules/rimraf/README.md
r484 r516 1 A`rm -rf` for node.1 `rm -rf` for node. 2 2 3 3 Install with `npm install rimraf`, or just drop rimraf.js somewhere. … … 10 10 errors are handled for you: 11 11 12 * `EBUSY` - rimraf will back off a maximum of opts.maxBusyTries times 13 before giving up. 14 * `EMFILE` - If too many file descriptors get opened, rimraf will 15 patiently wait until more become available. 16 12 * Windows: `EBUSY` and `ENOTEMPTY` - rimraf will back off a maximum of 13 `opts.maxBusyTries` times before giving up. 14 * `ENOENT` - If the file doesn't exist, rimraf will return 15 successfully, since your desired outcome is already the case. 17 16 18 17 ## rimraf.sync … … 20 19 It can remove stuff synchronously, too. But that's not so good. Use 21 20 the async API. It's better. 21 22 ## CLI 23 24 If installed with `npm install rimraf -g` it can be used as a global 25 command `rimraf <path>` which is useful for cross platform support. 26 27 ## mkdirp 28 29 If you need to create a directory recursively, check out 30 [mkdirp](https://github.com/substack/node-mkdirp).
Note: See TracChangeset
for help on using the changeset viewer.