- java的重命名操作需要通过rename函数来实现,其中包括
- File newFile=new File(file.getParent(),filename);//先生成一个新的文件和文件名称,文件重命名需要获得父目录
file.renameTo(newFile);//实现文件的重命名的操作
import java.io.File;
public class FileRename {
public static void main(String[] args) {
long start=System.currentTimeMillis();
File file=new File("F:"+File.separator+"snake");
renameFile(file);
long end =System.currentTimeMillis();
System.out.println("花费时间:"+(end-start));
}
public static void renameFile(File file){
if(file.isDirectory()){
File results[]=file.listFiles();
if(results!=null){
for(int i=0;i<results.length;i++){
renameFile(results[i]);
}
}
}if(file.isFile()){
String filename=null;
if(file.getName().contains(".")){
filename=file.getName().substring(0,file.getName().lastIndexOf("."))+".txt";
}else{
filename=file.getName()+".txt";
}
File newFile=new File(file.getParent(),filename);
file.renameTo(newFile);
}
}
}