rm-r
v1.0.2
Published
Remove all files/directories below a path recursively
Downloads
18
Readme
rmdir
Remove all files in the given path recursively. This is equivilent to the unix command rm -r
.
Installation
npm install rm-r
then in your app
var rm = require('rm-r')
API
This package contains two implementations sync and async. Both have the same API and test suite but the async version returns results.
remove(path)
rm whatever happens to be at path
rmfile(path)
rm file or symlink
rmdir(path)
empty dir and remove it
Example
rm('/path/to/the/thing/you/want/gone')
rm.file('/path/to/a/file')
rm.dir('/path/to/a/dir')