java 查询目录下所有的文件(包含递归)

来源:互联网 发布:新生报到流程优化 编辑:程序博客网 时间:2024/05/22 16:39



import java.io.File;public class dd {/** * @param args */public static void main(String[] args) {// TODO Auto-generated method stubString path = "G://Image//つくもたん素材//";    getFile(path);  }   private static void getFile(String path){            // get file list where the path has            File file = new File(path);               // get the folder list               File[] array = file.listFiles();                             for(int i=0;i<array.length;i++){                   if(array[i].isFile()){                       // only take file name                       System.out.println("|-->  " + array[i].getName());                       // take file path and name                       System.out.println("#####" + array[i]);                       // take file path and name                       System.out.println("*****" + array[i].getPath());                   }else if(array[i].isDirectory()){                       getFile(array[i].getPath());                   }               }           }    }    




0 0
原创粉丝点击