You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 3 година
12345678910111213141516
  1. # removeSync(path)
  2. Removes a file or directory. The directory can have contents. Like `rm -rf`.
  3. - `path` `<String>`
  4. ## Example:
  5. ```js
  6. const fs = require('fs-extra')
  7. // remove file
  8. fs.removeSync('/tmp/myfile')
  9. fs.removeSync('/home/jprichardson') // I just deleted my entire HOME directory.
  10. ```