To rename a file name, we use renameTo() method, which is a method of File class. Here, we are using statement File F=new File("f:/Includehelp.txt"); to create an object of File class by passing file name. Here, "Includehelp.txt" is the file name, which is saved in "f:" drive.
import java.io.File;
import java.io.IOException;
public class RenameFile {
public static void main(String[] args) {
try
// Here F is the object of the Existing file named
// with Includehelp which is to be renamed
{
File F = new File("f:/Includehelp.txt");
// Here T is the object of the renamed file
// of Includehelp which is Include.txt
File T = new File("f:/Include.txt");
// Rename the file Includehelp.txt
// into Include.txt
F.renameTo(T);
// Print the result if file renamed
System.out.println("File Rename Successfully...");
}
// If any error occurs while renaming the file
catch (Exception e) {
System.out.println(e);
}
}
}
Consider the program:
Output