End of Central Directory record could not be found

C#Zip

C# Problem Overview


I am downloading a zip file using c# program and I get the error

at System.IO.Compression.ZipArchive.ReadEndOfCentralDirectory()
   at System.IO.Compression.ZipArchive.Init(Stream stream, ZipArchiveMode mode,
Boolean leaveOpen)
   at System.IO.Compression.ZipArchive..ctor(Stream stream, ZipArchiveMode mode,
 Boolean leaveOpen, Encoding entryNameEncoding)
   at System.IO.Compression.ZipFile.Open(String archiveFileName, ZipArchiveMode
mode, Encoding entryNameEncoding)
   at System.IO.Compression.ZipFile.ExtractToDirectory(String sourceArchiveFileN
ame, String destinationDirectoryName, Encoding entryNameEncoding)
   at System.IO.Compression.ZipFile.ExtractToDirectory(String sourceArchiveFileN
ame, String destinationDirectoryName)

Here's the program

    response = (HttpWebResponse)request.GetResponse();
    Stream ReceiveStream = response.GetResponseStream();
    byte[] buffer = new byte[1024];
    FileStream outFile = new FileStream(zipFilePath, FileMode.Create);
    int bytesRead;
    while ((bytesRead = ReceiveStream.Read(buffer, 0, buffer.Length)) != 0)
        outFile.Write(buffer, 0, bytesRead);
    outFile.Close();
    response.Close();
    try
    {
        ZipFile.ExtractToDirectory(zipFilePath, destnDirectoryName);
    }
    catch (Exception e)
    {
        Console.WriteLine(e.ToString());
        Console.ReadLine();
    }

I do not understand the error. Can anybody explain this Thanks MR

C# Solutions


Solution 1 - C#

The problem is ZipFile can't find the line of code that signals the end of the archive, so either:

  1. It is not a .zip archive.

    • It may be a .rar or other compressed type. Or as I suspect here, you are downloading an html file that auto-redirects to the zip file.
    • Solution - Gotta find a correct archive to use this code.
  2. The archive is corrupt.

    • Solution - The archive will need repairing.
  3. There is more than 1 part to the archive.

    • A multi part zip file.
    • Solution - Read in all the files before decompression.
  4. As @ElliotSchmelliot notes in comments, the file may be hidden or have extended characters in the name.

    • Solution - Check your file attributes/permissions and verify the file name.

Opening the file with your favorite zip/unzip utility (7-zip, winzip, etc) will tell which of these it could be.

Solution 2 - C#

From your old question you deleted. > I get System.IO.InvalidDataException: End of Central Directory record could not be found.

This most likely means whatever file you are passing in is malformed and the Zip is failing. Since you already have the file outfile on the hard drive I would recommend trying to open that file with with windows built in zip extractor and see if it works. If it fails the problem is not with your unzipping code but with the data the server is sending to you.

Solution 3 - C#

I have the same problem, but in my case the problem is with the compression part and not with the decompression.

During the compression I need use the "Using" statament with the Stream and the ZipArchive objects too. The "Using" statament will Close the archive properly and I can decompress it without any problem.

The working code in my case in VB.Net:

Using zipSteramToCreate As New MemoryStream()
	Using archive As New ZipArchive(zipSteramToCreate, ZipArchiveMode.Create)
		' Add entry...
	End Using
    
	' Return the zip byte array for example:
	Return zipSteramToCreate.ToArray
End Using

Solution 4 - C#

I encountered this same problem. There are many types of compression, .zip being only one of the types. Look and make sure that you aren't trying to 'unzip' a .rar or similar file.

Solution 5 - C#

In my case i absolutely KNEW that my zip was not corrupted, and I was able to figure out through trial and error that I was extracting the files to a directory with the filename and extension in the FOLDER Name.

So Unzipping /tmp/data.zip to:

/tmp/staging/data.zip/files_go_here

failed with the error [End of Central Directory record could not be found]

but extracting data.zip to this worked just fine:

/tmp/staging/data/files_go_here

While it might seem unusual to some folks to name a folder a filename with extension, I can't think of a single reason why you should not be able to do this, and more importantly -- the error returned is not obviously related to the cause.

I was getting the same error with both the System.IO.Compression library and 3rd party packages such as SharpZipLib -- which is what eventually clued me in that it was a more general issue.

I hope this helps someone and saves them some time/frustration.

Solution 6 - C#

I used SharpCompress C#.net Library available via Nuget Package manager, it solved my purpose of unzipping.

Solution 7 - C#

I just came across this thread when I had the same error from a PowerShell script calling the Net.WebClient DownloadFile method.

In my case, the problem was that the web server was unable to provide the requested zip file, and instead provided an HTML page with an error message in it, which obviously could not be unzipped.

So instead, I created an exception handler to extract and present the "real" error message.

Solution 8 - C#

Might be useful to someone else. I dealt with this by adding an exception to my code, which then:

  1. Creates a temporary directory
  2. Extracts the zip archive (normally works)
  3. Renames the original ziparchive to *.bak
  4. Zips and replaces the original archive file with one that works

Solution 9 - C#

Write down the stream to a file then inspect it with a (hex) editor.
I got the same message in Visual Studio when downloading nupkg from nuget.org. It was because nuget.org was blacklisted by the firewall. So instead of the pkg I got a html error page which (of course) cannot be unzipped.

Solution 10 - C#

For me, the problem had to do with git settings.

To solve it, I added:

*.zip binary

to my .gitattributes file.

Then I downloaded an uncorrupted version of the file (without using git) and added a new commit updating the .zip file to the uncorrupted version and also updating the .gitattributes file.

I wish I could avoid adding that extra commit to update the .zip file, but the only way I can think of avoiding that would be to insert a commit updating the .gitattributes file into or before the commit that added the .zip file (using a rebase) and using git push -f to update the remote repo, but I can't do that.

Solution 11 - C#

In my case: I was mistakenly saving an input stream to *.zip.

While Archive Utility had no issues opening the file, all the rest failed (unzip cmd or java libs) with the same "end of central" error.

The plot-twist was: the file I'm downloading is in gzip format, i.e. *.gz, and not zip.

Solution 12 - C#

Make sure it is a zip file you trying to decompress.

The web-service I querying zips results when there are two files, but in this instance it was just returning one. My code was saving the embedded base64 as a stream and therefore my code was assigning the zip extension.

Whereas it was already actually just a plain PDF...

Solution 13 - C#

In my case, I was receiving this error in a combination with FileSystemWatcher, which triggered a processing method upon the zip archive before the archive was fully copied/created in its target folder.

I solved it with a check of whether the zip archive was truly eligible for reading in a try/catch block within a while loop.

Solution 14 - C#

My solution compress with powershell

Compress-Archive * -DestinationPath a.zip

Solution 15 - C#

I found resolution.

Move "Tools->Nuget PackageManager ->Package Manager Settings" and in "Nuget Package Manager" -General Tab , click Clear All Nuget Caches button and OK. You can install package from online

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser2726975View Question on Stackoverflow
Solution 1 - C#crthompsonView Answer on Stackoverflow
Solution 2 - C#Scott ChamberlainView Answer on Stackoverflow
Solution 3 - C#SZLView Answer on Stackoverflow
Solution 4 - C#Roger HillView Answer on Stackoverflow
Solution 5 - C#Jason RoosView Answer on Stackoverflow
Solution 6 - C#RaghuView Answer on Stackoverflow
Solution 7 - C#paulfView Answer on Stackoverflow
Solution 8 - C#user3899886View Answer on Stackoverflow
Solution 9 - C#frenchoneView Answer on Stackoverflow
Solution 10 - C#JoelFanView Answer on Stackoverflow
Solution 11 - C#Achraf AmilView Answer on Stackoverflow
Solution 12 - C#bendeckoView Answer on Stackoverflow
Solution 13 - C#swannaView Answer on Stackoverflow
Solution 14 - C#mdimai666View Answer on Stackoverflow
Solution 15 - C#Mehmet KurtView Answer on Stackoverflow