Skip to content

Instantly share code, notes, and snippets.

@magician11
Created December 18, 2018 03:30
Show Gist options
  • Save magician11/3cdc47749dcdf0653f035358edb42739 to your computer and use it in GitHub Desktop.
Save magician11/3cdc47749dcdf0653f035358edb42739 to your computer and use it in GitHub Desktop.
How to recursively delete a directory then re-create it in Nodejs
const fs = require('fs');
const rimraf = require('rimraf');
const tempBackupDirectory = 'backups';
rimraf.sync(tempBackupDirectory);
fs.mkdirSync(tempBackupDirectory);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment