static L filesEndingWith(File dir, S suffix) { ret listFilesWithSuffix(dir, suffix); } static L filesEndingWith(L l, S suffix) { new L l; for (File f : unnull(l)) if (!f.isDirectory() && (empty(suffix) || endsWithIgnoreCase(f.getName(), suffix))) l.add(f); ret l; }