UniZip is zipper for unity3d.
Copy all items from the Assets/Plugins folder to your Unity3d Assets/Plugins folder.
- iOS.
- Android.
- Standalone(Includes Mac and Windows)
string zipfilePath = Application.temporaryCachePath + "/args.zip";
string exportLocation = Application.temporaryCachePath + "/dir";
ZipUtil.Unzip(zipfilePath, exportLocation);
string exportZip = Application.temporaryCachePath + "/args.zip";
string[] files = new string[] { Application.dataPath + "/Example/Resources/args.txt" };
ZipUtil.Zip(exportZip, files);
- Support async zip/unzip
- Inform progress while async job
- Inform result
- Support password
- Submit assetstore
- Directory support
- Support unityhub distribution
This project is licensed under the MIT License - see the LICENSE file for details
- It's inspired of SSZipArchive.