MATLAB: How to search the files inside a zip file

zip file search

I have a zip file which contains another 1000 zip files and I need to search among these zip files and separate 200 of them and copy them to my folder. Is there any way to do that?

Best Answer

Note: there was a posting a couple of weeks ago indicating that MATLAB's zip facility (which calls Java's zip libraries) is much much slower at unzipping than an external unzip.
It is plausible that you might want to use a MATLAB program to analyze a zip file to figure out which specific parts you wanted to extract, but that you might then call out to 7zip or the like in order to do the actual extraction.
Related Question