site_archiver@lists.apple.com Delivered-To: cocoa-dev@lists.apple.com Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=frameforge.com; s=hostingermail-a; t=1666718417; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Hgz/dTDRLDGr8jcAkcWMmY6xsT5DiKrTaZvhMgyC+PQ=; b=pMnjHR6Kap9+pADYXj1F0Ye3VA0jyMzZ6EvK6SC7rIUGmWVI8X2SKEv1fGBu3F+zCqQoR4 ShAMqvHLAB3n2an6ht5xJmzfxphVqtbblTBExTwgH6JyDmWyCNHbS7MuJiy8+vrSlUM5Z+ efTfbhxITNQyop+VQSRbsgpU6VSccuhJiE/QB71GIGMDYyvojsyA6PACgY0LMK4CZqauqm 7uGCxrAATz0F5qNxyRGeFFkEKu5ALiI1kfJrh8JOV08RA183hzcpiJC+hzukKPBPS3qRFK fQNuCaHFmglInIsoES1aQZ1gBHXEidEg9lM7byegu4XwB8/4dGS4Vv7SbcJ62w== User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.4.0 On 10/24/22 6:45 PM, Carl Hoefs via Cocoa-dev wrote: My iOS app downloads a gzip'd data file into its sandbox that the app needs to unzip and process. I don't see anything in Cocoa (such as NSFileManager) that addresses uncompressing files. Is there a way? (BTW, I tried some ancient 3rd party code called ZipArchive but it always fails trying to parse the zipped file.) I'm hoping there's a built-in solution or framework that I'm just overlooking. _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/site_archiver%40lists.appl... This email sent to site_archiver@lists.apple.com It's not clear whether you're aware that gzip and zip are not the same thing. So if you take a gzip file and feed it to a zip decoder, that's not going to work.