{"id":15048393,"url":"https://github.com/github/ssziparchive","last_synced_at":"2026-01-11T11:58:20.139Z","repository":{"id":9817639,"uuid":"11801296","full_name":"github/ssziparchive","owner":"github","description":"Utility class for zipping and unzipping files on iOS and Mac","archived":true,"fork":true,"pushed_at":"2015-02-21T07:18:46.000Z","size":336,"stargazers_count":11,"open_issues_count":0,"forks_count":9,"subscribers_count":27,"default_branch":"master","last_synced_at":"2024-09-29T00:21:34.377Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"ZipArchive/ZipArchive","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/github.png","metadata":{"files":{"readme":"Readme.markdown","changelog":"Changelog.markdown","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-07-31T21:05:01.000Z","updated_at":"2024-07-31T03:21:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/github/ssziparchive","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Fssziparchive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Fssziparchive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Fssziparchive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Fssziparchive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/github","download_url":"https://codeload.github.com/github/ssziparchive/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235232693,"owners_count":18957057,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-09-24T21:11:21.349Z","updated_at":"2025-10-04T08:31:35.867Z","avatar_url":"https://github.com/github.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"**NOTE: This fork is no longer supported or updated by GitHub. See https://github.com/soffes/ssziparchive**\n\n# SSZipArchive\n\nSSZipArchive is a simple utility class for zipping and unzipping files. Features:\n\n* Unzipping zip files\n* Unzipping password protected zip files\n* Creating zip files\n* Appending to zip files\n* Zipping files\n* Zipping NSData with a filename\n* Works in ARC and non-ARC projects\n\n## Adding to your project\n\n1. Add `SSZipArchive.h`, `SSZipArchive.m`, and `minizip` to your project.\n2. Add the `libz` library to your target\n\nYou don't need to do anything regarding ARC. SSZipArchive will detect if you're not using ARC and add the required memory management code.\n\n## Usage\n\n``` objective-c\n// Unzipping\nNSString *zipPath = @\"path_to_your_zip_file\";\nNSString *destinationPath = @\"path_to_the_folder_where_you_want_it_unzipped\";\n[SSZipArchive unzipFileAtPath:zipPath toDestination:destinationPath];\n\n// Zipping\nNSString *zippedPath = @\"path_where_you_want_the_file_created\";\nNSArray *inputPaths = [NSArray arrayWithObjects:\n                       [[NSBundle mainBundle] pathForResource:@\"photo1\" ofType:@\"jpg\"],\n                       [[NSBundle mainBundle] pathForResource:@\"photo2\" ofType:@\"jpg\"]\n                       nil];\n[SSZipArchive createZipFileAtPath:zippedPath withFilesAtPaths:inputPaths];\n```\n\n## Tests\n\nSimply, open the Xcode project in the Tests directory and press Command-U to run the tests.\n\n[![Build Status](https://staging.travis-ci.org/soffes/ssziparchive.png?branch=master)](https://staging.travis-ci.org/soffes/ssziparchive)\n\n## License\n\nSSZipArchive is licensed under the [MIT license](https://github.com/samsoffes/ssziparchive/raw/master/LICENSE).  A slightly modified version of [Minizip](http://www.winimage.com/zLibDll/minizip.html) 1.1 is also included and is licensed under the [Zlib license](http://www.zlib.net/zlib_license.html).\n\n## Thanks\n\nThanks [aish](http://code.google.com/p/ziparchive) for creating [ZipArchive](http://code.google.com/p/ziparchive) which SSZipArchive is based on, Johnnie Walker ([@randomsequence](https://github.com/randomsequence)) for implementing creation support, and John Engelhart ([@johnezang](https://github.com/johnezang)) for all his amazing help along the way.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgithub%2Fssziparchive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgithub%2Fssziparchive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgithub%2Fssziparchive/lists"}