The fs.rename() method is used to asynchronously rename a file at the given old path to a given new path. It will overwrite the destination file if it already exists.
Syntax:
fs.rename( oldPath, newPath, callback )
Parameters: This method accept three parameters as mentioned above and described below:
- oldPath: It holds the path of the file that has to be renamed. It can be a string, buffer or URL.
- newPath: It holds the new path that the file has to be renamed. It can be a string, buffer or URL.
- callback: It is the function that would be called when the method is executed. It has an optional argument for showing any error that occurs during the process.
Below examples illustrate the fs.rename() method in Node.js:
Example 1: This example uses fs.rename() method to rename a file.
const fs = require( 'fs' );
getCurrentFilenames();
fs.rename( 'hello.txt' , 'world.txt' , () => {
console.log( "\nFile Renamed!\n" );
getCurrentFilenames();
});
function getCurrentFilenames() {
console.log( "Current filenames:" );
fs.readdirSync(__dirname).forEach(file => {
console.log(file);
});
}
|
Output:
Current filenames:
hello.txt
index.js
File Renamed!
Current filenames:
index.js
world.txt
Example 2: This example uses fs.rename() method to demonstrate an error during file renaming.
const fs = require( 'fs' );
getCurrentFilenames();
fs.rename( 'hello.txt' , 'geeks.txt' , (error) => {
if (error) {
console.log(error);
}
else {
console.log( "\nFile Renamed\n" );
getCurrentFilenames();
}
});
function getCurrentFilenames() {
console.log( "Current filenames:" );
fs.readdirSync(__dirname).forEach(file => {
console.log(file);
});
}
|
Output:
Current filenames:
index.js
package.json
world.txt
[Error: ENOENT: no such file or directory, rename
'G:\tutorials\nodejs-fs-rename\hello.txt' ->
'G:\tutorials\nodejs-fs-rename\geeks.txt'] {
errno: -4058,
code: 'ENOENT',
syscall: 'rename',
path: 'G:\\tutorials\\nodejs-fs-rename\\hello.txt',
dest: 'G:\\tutorials\\nodejs-fs-rename\\geeks.txt'
}
Reference: https://nodejs.org/api/fs.html#fs_fs_rename_oldpath_newpath_callback
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
13 Oct, 2021
Like Article
Save Article