UniZip is zipper for unity3d.
#supported
- iOS.
- Android.
- Mac.and probably windows.
#iOS how to
- build project.
- add file "PluginsCode>iOS>ZipArchive" to xcode project.
- enjoy.
#example
-unzip
string zipfilePath = Application.temporaryCachePath + "/args.zip"
string exportLocation = Application.temporaryCachePath + "/dir"
ZipUtil.Unzip ( zipfilePath, exportLocation);
-zip
string exportZip = Application.temporaryCachePath + "/dir/args.zip";
string[] files = new string[]{ Application.temporaryCachePath + "/dir/args.txt"}
ZipUtil.Zip (exportZip, files);
#License
This software is released under the MIT License, see LICENSE.