On Oct 25, 2022, at 12:12 AM, Markus Spoettl wrote:
>
> On 10/25/22 3:45 AM, 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
>> unco
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
On 10/25/22 3:45 AM, 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
No. There’s no solution there. The Archive framework makes uncompressing of raw
data easy, including the compression format that’s normally used inside .zip
files, but it doesn’t actually read .zip file format. The file format and the
compression algorithm are, in effect, unrelated to each other
>
> I'm hoping there's a built-in solution or framework that I'm just overlooking.
Guess: The Apple Archive framework
https://developer.apple.com/documentation/applearchive
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not pos
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 p