Closed minorsecond closed 3 years ago
I inserted a print statement just before your second loop in elzip.cpp
:
for (std::filesystem::path pathPart : cDir)
{
std::cout << pathPart.string() << std::endl;
and it dies after C:
. It looks like it's trying to create the C: directory.
Good catch, this should be fixed in this commit : https://github.com/Sygmei/11Zip/commit/cd2bd077d4f4251a68085add332bad3d6b623464 Let me know if something is not working :)
I'm closing this issue, feel free to reopen it if this is not working
Hello,
I'm attempting to extract a zip file using this method:
Here's some console output:
However, my program crashes at the extractZip step. I've verified the zip file, but I can't figure it out. Is this the correct implementation?