public static void main(String[] args) {
String path="E:\\apache-tomcat-7.0.62\\webapps\\view";
getFile(path);
}
public static void getFile(String path){
File file=new File(path);
System.out.println("该目录:"+path);
File[] tempList = file.listFiles();
if(tempList!=null){
System.out.println("该目录下对象个数:"+tempList.length);
for (int i = 0; i < tempList.length; i++) {
if (tempList[i].isFile()) {
System.out.println("文 件:"+tempList[i]);
}
if (tempList[i].isDirectory()) {
System.out.println("文件夹:"+tempList[i]);
getFile(tempList[i].getAbsolutePath());
}
}
}
}
获取目录下所有子文件及子文件夹
最新推荐文章于 2021-09-05 18:36:21 发布