java递归遍历文件夹下所有文件
添加依赖
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>4.6.3</version>
</dependency>
// 递归查找所有jpeg文件
final List<File> jpegs = FileUtil.loopFiles("目标文件夹", new FileFilter() {
@Override
public boolean accept(File pathname) {
if (pathname.getName().endsWith(ImgUtil.IMAGE_TYPE_JPEG)) {
return true;
}
return false;
}
});
Loading...