/**
* 指定目录中删除指定格式的文件
* @param strPath
* @param fileFormat
*/
public void refreshFileList(String strPath,String fileFormat) {
File dir = new File(strPath);
File[] files = dir.listFiles();
if (files == null) {
System.out.println("该目录下没有任何一个文件!");
return;
}
for (int i = 0; i < files.length; i++) {
if (files[i].isDirectory()) {
refreshFileList(files[i].getAbsolutePath(), fileFormat);
} else {
String strFileName = files[i].getAbsolutePath().toLowerCase();
if (strFileName.endsWith(fileFormat)) {
System.out.println("正在删除:" + strFileName);
files[i].delete();
}
}
}
}
网友评论