https://github.com/timonus/tjzipcompress
Zero-dependency Objective-C zip compressor
https://github.com/timonus/tjzipcompress
compress ios objective-c zip
Last synced: 9 months ago
JSON representation
Zero-dependency Objective-C zip compressor
- Host: GitHub
- URL: https://github.com/timonus/tjzipcompress
- Owner: timonus
- License: bsd-3-clause
- Created: 2020-11-26T00:37:50.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-08T15:55:44.000Z (over 5 years ago)
- Last Synced: 2025-08-31T13:34:15.966Z (9 months ago)
- Topics: compress, ios, objective-c, zip
- Language: Objective-C
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TJZipCompress
This projects implements a simple zip compression interface in Objective-C using Foundation's built-in zip support (discovered [here](https://twitter.com/steipete/status/1331670439471554560)).
## Usage
To create a zip of a file or folder
```objc
TJZipCompress(/*file URL to zip*/, /*destination URL of zipped file*/);
```
Easy peasy.