Hi,
I've encountered an issue when unpacking uncompressed files from a zip archive.
Code used
Poco::FileInputStream inp("archive.zip", std::ios::binary);
if (inp.good()) {
try {
Poco::Zip::Decompress dec(inp, ".\\unpacked");
dec.decompressAllFiles();
} catch (Poco::Exception& ex) {}
}
Exception Message: Bad data info header
Other tools are able to unpack these archives.
Example Archive:
contains_zip_store.zip
Hi,
I've encountered an issue when unpacking uncompressed files from a zip archive.
Code used
Exception Message: Bad data info header
Other tools are able to unpack these archives.
Example Archive:
contains_zip_store.zip