Skip to content
forked from Sygmei/11Zip

Dead simple zipping / unzipping C++ Lib

License

Notifications You must be signed in to change notification settings

litterbug23/11Zip

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

11Zip

Dead simple zipping / unzipping C++ Lib

I didn't really wanted to make my own zipping / unzipping library but as I found nothing else, I made my own.

That's why I called this lib 11Zip, 11 is the atomic number of the sodium as it describes pretty well my salty feeling when searching for a zipping / unzipping C++ Lib.

By the same time it's also a reference to 7zip.

The lib is based on zlib & minizip : https://github.com/madler/zlib

It does also include some wrapper code from here : www.vilipetek.com/2013/11/22/zippingunzipping-files-in-c/

For now you have access to two functions which are really simple :

elz::extractZip(std::string zipName, std::string target = ".");

Which just unzip the content of a zip in "target" folder (which is current folder by default).

and the other function is :

elz::zipFolder(std::string folderName, std::string zipTarget = "");

Which just zip the folder "folderName" to "zipTarget" (Which is "folderName".zip by default).

About

Dead simple zipping / unzipping C++ Lib

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 92.0%
  • C++ 5.0%
  • Objective-C 3.0%