Created
December 18, 2018 03:30
-
-
Save magician11/3cdc47749dcdf0653f035358edb42739 to your computer and use it in GitHub Desktop.
How to recursively delete a directory then re-create it in Nodejs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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