ZIPFoundation
ZIPFoundation copied to clipboard
Effortless ZIP Handling in Swift
# Summary When a symlink points to a path with another symlink the unzipping fails because the path may not exist. # Steps to Reproduce Unzip an archive that contains...
# Changes proposed in this PR * Fix extraction order of symlinks # Tests performed - Existing tests - Extracting the AltServer download from https://altstore.io/ # Further info for the...
# Summary When archiving, I always encounter this error in v0.9.14 via SPM # Steps to Reproduce Archive the app # Expected Results A successful archive will be generated #...
# Summary I zip a file from the iOS filesystem (log file). I then read that file as data and send it as an attachment in an email. When I...
# Summary When trying to open a zip file that isn't actually a zip (e.g., random data), it is very slow. This is because `scanForEndOfCentralDirectoryRecord` moves back byte-by-byte from the...
Fixes # # Changes proposed in this PR * * * # Tests performed # Further info for the reviewer # Open Issues
# Summary If I try to unzip a file (using the FileManager extension) to a URL which was created with a relative path, the extraction fails with an error. Using...
I have a problem: I can't monitor the progress, so I debug and find that the uncompressedSize of entry in the zip always zero. ``` public var uncompressedSize: Int {...
**Is your feature request related to a problem? Please describe.** In most use cases of `FileManager`'s `unzipItem(at:to:skipCRC32:progress:preferredEncoding:)` callers need to know what was unzipped. Now this can be achieved by...
I need to get access for the comment of a Zip file I'm reading and also set set it when creating a new archive. I see there is already support...