How to Delete Directory in Node.js?
Hello,
Today, how to delete directory in node.js is our main topic. you'll learn node js delete folder if exists. In this article, we will implement a node js delete folder with files. it's simple example of node js delete directory.
We will use fs npm package for delete folder using node.js. fs package provide rmdirSync() for remove folder. let's see simple example
Step 1: Create Node App
run bellow command and create node app.
mkdir my-app
cd my-app
npm init
Step 2: Create server.js file
Make sure, you have created "images" folder with some images.
server.js
const fs = require('fs');
var folder = './images';
if (fs.existsSync(folder)){
fs.rmdirSync(folder, { recursive: true });
console.log('Folder Deleted Successfully.');
}
now you can simply run by following command:
node server.js
Output:
i hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Check File is Exist or Not in Node JS?
- How to Create Directory if does not Exists in Node JS?
- How to Delete File If Exists in Node JS?
- How to Get All Files from Folder in Node JS?
- How to Download Image from URL in Node JS?
- How to Generate QR Code in Node JS?
- How to Get Data from Json File in Node JS?
- How to Remove Element from Array in Node JS?
- Node JS Sort Array of Objects by Value Example
- Node JS Foreach Loop Array Example
- How to Create and Use .env File in Node JS?
- Node JS Make HTTP Put Request Example