Java递归遍历文件夹目录

package com.czie.iot1913.lps01.IO.File;

import java.io.File;

/**
* @author 1944900433@qq.com
* @date 2022-03-22 13:28
*
*/
public class FileSearchTest01 {
public static void main(String[] args) {
//创建一个file对象
File srcFile = new File("E:\\Chrom");
//调用方法
getAllFilePath(srcFile);


}
//定义方法获取目录内容
public static void getAllFilePath(File srcFile){
File[] filesArray = srcFile.listFiles();
if (filesArray!=null){
for (File file:filesArray){
if (file.isDirectory()){
getAllFilePath(file);
}else {
System.out.println(file.getAbsolutePath());
}
}
}

}

}

 

posted @ 2022-03-22 13:42  刘品水  阅读(183)  评论(0编辑  收藏  举报