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
Empty ZIP files are a special kind of ZIP. The header differs.
File contents: 50 4b 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50 4b 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Calling GetFileType(this byte[] bytes) returns null.
GetFileType(this byte[] bytes)
$ file -i ZIPempty.zip ZIPempty.zip: application/zip; charset=binary
The text was updated successfully, but these errors were encountered:
A ZIP header should start with 0x04034b50 but mine starts with 0x06054b50.
0x04034b50
0x06054b50
.ZIP File Format Specification at section "4.3.16 End of central directory record" says that my header looks like a "end of central dir signature".
Steps to recreate this file:
Do you think this makes a corrupted zip? Or is it legit?
Sorry, something went wrong.
No branches or pull requests
Empty ZIP files are a special kind of ZIP. The header differs.
File contents:
50 4b 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Calling
GetFileType(this byte[] bytes)
returns null.The text was updated successfully, but these errors were encountered: