Re: Cocoa framework or Object class to uncompress files

2022-10-24 Thread Quincey Morris via Cocoa-dev
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

Re: Cocoa framework or Object class to uncompress files

2022-10-24 Thread Marco S Hyman via Cocoa-dev
> > 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

Cocoa framework or Object class to uncompress files

2022-10-24 Thread Carl Hoefs via Cocoa-dev
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