devxlogo

Rename a File Using Java

Rename a File Using Java

Java allows you to rename a file by using the renameTo(File file) method, in the java.io.File class.

First, obtain a reference to the file that you want to rename. Second, invoke the renameTo() method on that reference using a File argument.

Suppose you have a file named Results.dat and you want to rename it Results_May.dat.

The code lines below show how it’s done:

//Obtain the reference of the existing fileFile oldFile = new File("Results.dat"); //Now invoke the renameTo() method on the reference, oldFile in this caseoldFile.renameTo(new File("Results_May.dat"));
See also  How to Create and Deploy QR Codes Online: A Comprehensive Guide
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist