We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I've recently upgraded quazip from 0.2.3 to 1.1. I'm getting -103 error when doing a read:
QuaZip Zip(ArchiveName); if(!Zip.open(QuaZip::mdUnzip)) { return -1; }
QuaZipFile InFile(&Zip);
for(bool NextExist = Zip.goToFirstFile(); NextExist; NextExist = Zip.goToNextFile()) { if(!InFile.open(QIODevice::ReadOnly)) { std::cout << "Failed to open a file in the archive. QuaZip error: " << InFile.getZipError() << std::endl; }
It feels like some of the archives open and some dont. Also those that dont open seem to be above 2 Gb.
Any idea what's happening here please? Thanks
The text was updated successfully, but these errors were encountered:
Actually anything above 4 Gb fails, even something just less than 4Gb (3.9 Gb works) - over 4Gb and fail!
Sorry, something went wrong.
Did you try QuaZip::setZip64Enabled?
No branches or pull requests
Hello,
I've recently upgraded quazip from 0.2.3 to 1.1. I'm getting -103 error when doing a read:
QuaZip Zip(ArchiveName);
if(!Zip.open(QuaZip::mdUnzip))
{
return -1;
}
QuaZipFile InFile(&Zip);
for(bool NextExist = Zip.goToFirstFile(); NextExist; NextExist = Zip.goToNextFile())
{
if(!InFile.open(QIODevice::ReadOnly))
{
std::cout << "Failed to open a file in the archive. QuaZip error: " << InFile.getZipError() << std::endl;
}
It feels like some of the archives open and some dont. Also those that dont open seem to be above 2 Gb.
Any idea what's happening here please? Thanks
The text was updated successfully, but these errors were encountered: