* Executes a child process to forcefully remove * a directory containing files * * @param {String} dirPath The path of the directory to remove * @param {Function} cb [The function to execute when finished * @return {Void}
(dirPath, cb)
| 21 | * @return {Void} |
| 22 | */ |
| 23 | function removeForcefully (dirPath, cb) { |
| 24 | exec('rm -rf '+ dirPath, function(err){ |
| 25 | cb(err); |
| 26 | }); |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Executes a child process to forcefully remove |
no test coverage detected