for (int i = 1; i <= 158; i++) {//创建文件名为Label_i_的文件夹158个
String filePath = "AA/Label_"+i+"_";
File folder = new File(filePath);// 创建文件夹
folder.mkdirs();// 创建文件夹
}
重名名文件
public static void reNameFile(String path,String oldname,String newname) {
if(!oldname.equals(newname)){//新的文件名和以前文件名不同时,才有必要进行重命名
File oldfile=new File(path+"/"+oldname);
File newfile=new File(path+"/"+newname);
if(!oldfile.exists()){
return;//重命名文件不存在
}
if(newfile.exists())//若在该目录下已经有一个文件和新文件名相同,则不允许重命名
System.out.println(newname+"已经存在!");
else{
oldfile.renameTo(newfile);
}
}else{
System.out.println("新文件名和旧文件名相同...");
}
}