vote up 1 vote down star

I've got a C# program that uses SharpZIPlib to decompress some zip files? It works fine but on one file, I keep getting "Unexpected EOF" error? Is there actually an EOF marker, or did the Zip file just get truncated?

flag

33% accept rate

4 Answers

vote up 5 vote down

Your file got truncated (or possibly extended or otherwise corrupted).

You could run the regular unzip program on it (say 'unzip -l file.zip') to prove this.

Incidentally, if you used FTP to download the file, did you remember to use a binary transfer? If you (accidentally) used ASCII mode, that will ruin any binary file such as a ZIP archive.

link|flag
vote up 4 vote down

A simple ZIP file looks like this:

LocalHeader1
CompressedData1
LocalHeader2
CompressedData2
[...]
LocalHeaderN
CompressedDataN
CentralHeader1
CentralHeader2
[...]
CentralHeaderN
EndHeader

The EndHeader contains (amongst other things) the offset to the first CentralHeader, then each CentralHeader contains an offset to their matching LocalHeader.

Some libraries can read the zip file from the start to process LocalHeaders sequentially, thus recover what can be recovered of a damaged zip file.

link|flag
Interesting information - thanks. – Jonathan Leffler Feb 6 at 22:08
DotNetZip (dotnetzip.codeplex.com) can optionally do a full scan of the zip file, ignoring the directory. This allows you to reconstruct the zip directory from the existing zip entries, for a corrupted or truncated file. – Cheeso Oct 22 at 3:39
vote up 2 vote down

Unexpected EOF means exactly that: when reading the file, the function encountered the end of the file and the library was expecting something else (data). It is not a marker.

link|flag
vote up 0 vote down

Have you tried DotNetZip ? http://www.codeplex.com/DotNetZip

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.