static L fileNamesStartingWith(Iterable l, fS prefix) { ret [File f : unnull(l) | startsWith(fileName(f), prefix)]; } static L fileNamesStartingWith(File[] l, S prefix) { ret fileNamesStartingWith(asList(l), prefix); }