Unzipping a single file from Archive
问题 I'm trying to port an existing Android application to iOS, In the Android application i was using a ZipInputStream to extract a single file from the zip archive and store it in as a temporary file. How could i extract a single file from a Zip Archive without having to extract the whole archive (As it is very large)? 回答1: I just found the answer, I had to modify SSZipArchive to insert a method that will extract a single file from the ZIP archive (Based on its name) You could find the modified