|
WoW Model Viewer
Your premiere tool for viewing, equipping and animating World of Warcraft models.
|
#include "ZipExtract.h"#include "Logger.h"#include <cstring>#include <fstream>#include <vector>#include <zlib.h>Go to the source code of this file.
Functions | |
| bool | extractZip (const std::string &zipData, const std::filesystem::path &destDir) |
| Extract all files from a ZIP archive into the given directory. | |
| bool extractZip | ( | const std::string & | zipData, |
| const std::filesystem::path & | destDir | ||
| ) |
Extract all files from a ZIP archive into the given directory.
Only regular stored and deflated entries are supported (covers dbd.zip).
| zipData | Raw ZIP file contents in memory. |
| destDir | Destination directory (created if needed). |
Definition at line 34 of file ZipExtract.cpp.