import java.io.File;
import java.io.FileFilter;
/*
 过滤规则
 */
public class FileFilterImpl implements FileFilter {
    @Override
    public boolean accept(File pathname) {
        if(pathname.isDirectory()) {  //如果pathname是一个文件夹,返回true,继续遍历这个文件夹

            return true;

        }

        return pathname.getName().toLowerCase().endsWith(".mp4"); 
    }

}
最后修改:2021 年 09 月 24 日
如果觉得我的文章对你有用,请随意赞赏