// subPath is relative and with slashes sbool fileExistsInInDirOrZip(File location, S subPath) ctex { if (location.isDirectory()) { File f = new File(location, subPath); ret f.exists(); } else if (location.isFile()) { ret zipContainsFile(location, subPath); } false; }