static L sortFilesAlphaNum(L l) { ret sorted(l, new Comparator() { public int compare(File a, File b) { ret cmpAlphaNum(a.getName(), b.getName()); } }); }