-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
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
Cannot read large zip files #40
Comments
@Zugwalt: I've never seen this, even with 1gb zip files... oh, here's something relevant from wikipedia's article on the zip file format:
So perhaps the "max: 4096" is referring to megabytes (4gb)? According to the article above, it looks like some libraries support zip64 and others don't. |
Yup, pretty sure this doesn't support ZIP64. Though PR welcome for adding support for it. |
Realized this is an older issue, but just in case this helps anyone, I had this error on a 300kb zip file, so completely unrelated to the 4GiB limit. In my case, I was streaming a zip file from elsewhere and I had a logical error that prevented the zip file to be completely written, creating an incomplete/corrupted zip file. Attempting to decompress it gave me this error, which in my context, the error was pretty misleading. |
seeing the same issue, do we have fix for this? My file is about 350M |
It seems is the nodejs VM restriction but not this module |
Seems like max file entry length of 4096 is hard coded. For large zip files we get errors like:
The text was updated successfully, but these errors were encountered: