#include <string>
#include <functional>
|
| namespace | ZipUtils |
| | ZipUtils provides compressing & decompressing files and folders.
|
| |
|
| bool | ZipUtils::zip (string path, string zipname) |
| |
| bool | ZipUtils::unzip (string zipfile, function< bool(string path, string filename)> processFile, function< bool(const char *data, size_t len)> writeChunk, function< bool(string path)> processDir, function< int(int currentFile, int totalFiles)> progress=nullptr) |
| |
| bool | ZipUtils::unzip (string path, string dest, bool override, function< int(int currentFile, int totalFiles)> progress) |
| |