This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
Typertext/node_modules/grunt/node_modules/rimraf
2014-02-26 13:12:37 -06:00
..
node_modules/graceful-fs initial commit 2014-02-26 13:12:37 -06:00
test initial commit 2014-02-26 13:12:37 -06:00
AUTHORS initial commit 2014-02-26 13:12:37 -06:00
LICENSE initial commit 2014-02-26 13:12:37 -06:00
package.json initial commit 2014-02-26 13:12:37 -06:00
README.md initial commit 2014-02-26 13:12:37 -06:00
rimraf.js initial commit 2014-02-26 13:12:37 -06:00

A rm -rf for node.

Install with npm install rimraf, or just drop rimraf.js somewhere.

API

rimraf(f, callback)

The callback will be called with an error if there is one. Certain errors are handled for you:

  • EBUSY - rimraf will back off a maximum of opts.maxBusyTries times before giving up.
  • EMFILE - If too many file descriptors get opened, rimraf will patiently wait until more become available.

rimraf.sync

It can remove stuff synchronously, too. But that's not so good. Use the async API. It's better.