Java basics
renameTo()
This method rename the file indicated by this abstract name.
Syntax:Library: java.io.File
public boolean renameTo(File dest)
Example:import java.io.File;
public class FileDemo {
public static void main(String[] args) {
File f = null;
File f1 = null;
boolean bool = false;
try{
// create new File objects
f = new File("C:/test.txt");
f1 = new File("C:/testABC.txt");
// rename file
bool = f.renameTo(f1);
// print
System.out.print("File renamed? "+bool);
}catch(Exception e){
// if any error occurs
e.printStackTrace();
}
}
}
Output:
File renamed? true
Content
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 257 / 158778271. Delta: 0.03670 с