How to rename file in Java
Published: June 2, 2010 , Updated: May 30, 2010 , Author: mkyong
Java comes with renameTo() method to rename a file. However , this method is really platform-dependent: you may successfully rename a file in *nix but failed in Windows. So, the return value (true if the file rename successful, false if failed) should always be checked to make sure the file is rename successful.
File.renameTo() Example
package com.mkyong.file; import java.io.File; public class RenameFileExample { public static void main(String[] args) { File oldfile =new File("oldfile.txt"); File newfile =new File("newfile.txt"); if(oldfile.renameTo(newfile)){ System.out.println("Rename succesful"); }else{ System.out.println("Rename failed"); } } }
Reference
Any Java questions or problems? please post at this JavaNullPointer.com forum, see you there ~
Someone I work with visits your site frequently and recommended it to me to read also. The writing style is great and the content is relevant. Thanks for the insight you provide the readers!