ItSolutionStuff.com

How to Rename a Folder in Node JS?

By Hardik Savani • September 22, 2021
Node JS

Hello,

In this tutorial, you will learn how to rename a directory in node js. this example will help you node js rename folder. you will learn node js rename directory. you will learn rename directory in node.js.

We will use fs npm package for rename directory using node.js. fs package provide rename() for rename 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" directory.

server.js

const fs = require('fs');

const folderPath = "./images"

const newFolderPath = "./images-new"

fs.rename(folderPath, newFolderPath, function(err) {

if (err) {

console.log(err)

} else {

console.log("Successfully renamed the folder.")

}

})

now you can simply run by following command:

node server.js

Output:

i hope it can help you...

Tags: Node JS
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Copy File to Another Directory in Node JS?

Read Now →

Node JS Rename All Files in Folder Example

Read Now →

How to Rename File in Folder using Node JS?

Read Now →

How to Delete Directory in Node.js?

Read Now →

Node JS - How to Delete All Files in Directory?

Read Now →

How to Check File is Exist or Not in Node JS?

Read Now →

How to Create Directory if does not Exists in Node JS?

Read Now →

How to Delete File If Exists in Node JS?

Read Now →

How to Get All Files from Folder in Node JS?

Read Now →

Node JS Multer Rename Uploaded File Example

Read Now →