Skip to content
forked from tsubaki/UnityZip

Ziparchive utils for Unity3d Native iOS/Android

License

Notifications You must be signed in to change notification settings

rumaniel/UnityZip

 
 

Repository files navigation

UniZip

UniZip is zipper for unity3d.

unity zip

Getting Started

Copy all items from the Assets/Plugins folder to your Unity3d Assets/Plugins folder.

supported

  • iOS.
  • Android.
  • Standalone(Includes Mac and Windows)

example

unzip

string zipfilePath = Application.temporaryCachePath + "/args.zip";
string exportLocation = Application.temporaryCachePath + "/dir";

ZipUtil.Unzip(zipfilePath, exportLocation);

zip

string exportZip = Application.temporaryCachePath + "/args.zip";
string[] files = new string[] { Application.dataPath + "/Example/Resources/args.txt" };

ZipUtil.Zip(exportZip, files);

TODO

  • Support async zip/unzip
  • Inform progress while async job
  • Inform result
  • Support password
  • Submit assetstore
  • Directory support
  • Support unityhub distribution

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments

About

Ziparchive utils for Unity3d Native iOS/Android

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 83.6%
  • Objective-C 14.0%
  • C# 1.3%
  • Other 1.1%