public static boolean readFileName(String filePath, String houzhui) {
File file = new File(filePath);
//指定目录是文件
if (!file.isDirectory()) {
if (file.getName().substring(file.getName().indexOf(".") + 1)//判断该文件文件名
.equals(houzhui)) {
System.out.println("文件名:" + file.getName());
}
} else if (file.isDirectory()) {
String[] list = file.list();
for (int i = 0; i < list.length; i++) {
File files = new File(filePath + "\\" + list[i]);
if (!files.isDirectory()) {
if (files.getName().substring(
files.getName().indexOf(".") + 1).equals(houzhui)) {
System.out.println("文件名:" + files.getName());
}
} else if (files.isDirectory()) {
readFileName(filePath + "\\" + list[i], houzhui);
}
}
}
return true;
}
File file = new File(filePath);
//指定目录是文件
if (!file.isDirectory()) {
if (file.getName().substring(file.getName().indexOf(".") + 1)//判断该文件文件名
.equals(houzhui)) {
System.out.println("文件名:" + file.getName());
}
} else if (file.isDirectory()) {
String[] list = file.list();
for (int i = 0; i < list.length; i++) {
File files = new File(filePath + "\\" + list[i]);
if (!files.isDirectory()) {
if (files.getName().substring(
files.getName().indexOf(".") + 1).equals(houzhui)) {
System.out.println("文件名:" + files.getName());
}
} else if (files.isDirectory()) {
readFileName(filePath + "\\" + list[i], houzhui);
}
}
}
return true;
}