项目中需要将一批文件全部重新命名,文件实在太多就写了这个工具类
这个工具类是将路径下的文件全部重新命名,且名字为同一个
package com.xingli.FileDemo;
import java.io.File;
/**
*@ClassName FileDemo
*@Description TODO
*@Author William
*@Date 2019/8/8 14:51
*@Version 1.0
*/
public class FileDemo {
public static void main(String[] args) {
changeFileName("D:\\paper");
}
/**
*@description: 通过文件路径,修改该路径下所有文件的名字
* @param path 文件夹路径
* @return:
* @author: William
* @date 2019/8/8 14:52
*/
public static void changeFileName(String path){
File file = new File(path);
if(file.exists()){
File[] files = file.listFiles();
if (null == files || files.length == 0) {
System.out.println("文件夹是空的!");
return;
} else {
for (File file2 : files) {
if (file2.isDirectory()) {
changeFileName(file2.getAbsolutePath());
} else {
System.out.println("文件:" + file2.getAbsolutePath());
String filePath = file2.getAbsolutePath();
String fileName = filePath.substring(0,filePath.lastIndexOf("\\"))+"\\aaa"+filePath.substring(filePath.lastIndexOf("."));
File oriFile = new File(filePath);
boolean b = oriFile.renameTo(new File(fileName));
System.out.println(b);
}
}
}
}else{
System.out.println("该路径不存在");
}
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/97042.html