用递归算法遍历文件下的所有子文件夹和子文件
文件夹遍历方法
public void getFileList(String strPath){ File f=new File(strPath); try { if(f.isDirectory()){ File[] fs=f.listFiles(); for(int i=0;i<fs.length;i++){ String fsPath=fs[i].getAbsolutePath(); System.out.printlen(fsPath); getFileList(fsPath); } }else if(f.isFile()){ String fname=f.getAbsolutePath(); System.out.printlen(fname); }else{ System.out.println("路径不正确!"); } }catch (IOException e) { System.out.println("遍历异常"); } }
时间: 2024-10-25 11:26:31