Hi there, I'm currently parsing some xml files that are zipped inside a main zip file. The xml parser can process zip files with xml files in it, so currently I unzip the main zip file to disk, then unzip each individual zip file to that same directoy to get the xml files, then just single zip the xml files to one main zip file and finally process in parser.
is it possible to unzip the double zipped files into a stream or memory and skip the unzipping to disk part?
I'm able to stream single zipped files but having trouble with the double zipped ones.
Thanks!