// lists files only - who needs to list directories?! // lists in typical .zip fashion - dir1/dir2/bla.txt static L filesInZipFile(File inZip) { ret listZipFile(inZip); } static L filesInZipFile(ZipFile zipFile) { ret listZipFile(zipFile); } static L filesInZipFile(S name) { ret listZipFile(name); }