import java.io.File;
public class readFile {
public static void main(String[] args) throws Exception {
//递归显示C盘下所有文件夹及其中文件
File root = new File("C:/Users/Administrator/Desktop");
showAllFiles(root);
}
public static void showAllFiles(File dir) throws Exception{
File[] fs = dir.listFiles();
for(int i=0; i<fs.length; i++){
if(fs[i].isDirectory()){
try{
showAllFiles(fs[i]);
}catch(Exception e){}
}else{
String ffHouZhui=fs[i].getName().substring(fs[i].getName().lastIndexOf(".")+1,fs[i].getName().length());//后缀名
if(ffHouZhui.equals("pdf")){//pdf文件
System.out.println(fs[i].getName());
}
}
}
}
}
时间: 2024-11-05 12:37:42