in reply to Re: get the files inside War
in thread get the files inside War

If a WAR file is a JAR file, then it actually is a ZIP file and you can open those with Archive::Zip — which is built on top of Compress::Zlib.

So yes, it can be done, but you'll have to write your own callback for File::Find to check the file extension, open the ZIP file, and list the files in them, or extract the files you want.