!636 !modern main { psvm { if (args.length == 0) scan("input/main.zip"); else for (String arg : args) scan(arg); } static void scan(String path) ctex { File file = new File(path); print("== Processing " + path); ZipFile zipFile = new ZipFile(file); Enumeration entries = zipFile.entries(); while (entries.hasMoreElements()) { ZipEntry entry = (ZipEntry)entries.nextElement(); System.out.println("File found: " + entry.getName()); } zipFile.close(); } }