Is there anyway in .Net (C#) to extract data from a zip file without decompressing the complete file?

Simply I possibly want to extract data (file) from the start of a zip file, obviously this depends if the compression algorithm compress the file in a deterministic order.

link|improve this question

78% accept rate
3  
This question is worded in a way that is hard to understand, I would recommend updating your question title to be more along the lines "How to read data from a zip file without having to unzip the entire file" – Chris Marisic May 11 '11 at 16:58
@Chris I changed the title according to your suggestion, I agree it is easier to understand quickly. – JYelton May 11 '11 at 17:05
Dupe of stackoverflow.com/questions/328343/… ? – Magnus May 11 '11 at 17:59
feedback

4 Answers

up vote 4 down vote accepted

DotNetZip is your friend here.

As easy as:

using (ZipFile zip = ZipFile.Read(ExistingZipFile))
{
  ZipEntry e = zip["MyReport.doc"];
  e.Extract(OutputStream);
}

(you can also extract to a file or other destinations).

Reading the zip file's table of contents is as easy as:

using (ZipFile zip = ZipFile.Read(ExistingZipFile))
{
  foreach (ZipEntry e in zip)
  {
    if (header)
    {
      System.Console.WriteLine("Zipfile: {0}", zip.Name);
      if ((zip.Comment != null) && (zip.Comment != "")) 
        System.Console.WriteLine("Comment: {0}", zip.Comment);
      System.Console.WriteLine("\n{1,-22} {2,8}  {3,5}   {4,8}  {5,3} {0}",
                               "Filename", "Modified", "Size", "Ratio", "Packed", "pw?");
      System.Console.WriteLine(new System.String('-', 72));
      header = false;
    }
    System.Console.WriteLine("{1,-22} {2,8} {3,5:F0}%   {4,8}  {5,3} {0}",
                             e.FileName,
                             e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"),
                             e.UncompressedSize,
                             e.CompressionRatio,
                             e.CompressedSize,
                             (e.UsesEncryption) ? "Y" : "N");

  }
}
link|improve this answer
+1. Behind the scenes, what DotNetZip does in the constructor is seek to the "directory" inside the zipfile, and then read it and populate the list of entries. At that point, if your app calls Extract() on one entry, DotNetZip seeks to the proper place in the zip file, and decompresses the data for just that entry. – Cheeso May 11 '11 at 19:57
feedback

Something like this will list and extract the files one by one, if you want to use SharpZipLib:

var zip = new ZipInputStream(File.OpenRead(@"C:\Users\Javi\Desktop\myzip.zip"));
var filestream = new FileStream(@"C:\Users\Javi\Desktop\myzip.zip", FileMode.Open, FileAccess.Read);
ZipFile zipfile = new ZipFile(filestream);
ZipEntry item;
while ((item = zip.GetNextEntry()) != null)
{
     Console.WriteLine(item.Name);
     using (StreamReader s = new StreamReader(zipfile.GetInputStream(item)))
     {
      // stream with the file
          Console.WriteLine(s.ReadToEnd());
     }
 }

Based on this example: content inside zip file.

link|improve this answer
1  
-1: Links with no context can become useless answers if the link breaks. – JYelton May 11 '11 at 17:04
1  
-1: I agree with JYelton. Fix it and I will remove my downvote – sra May 11 '11 at 17:10
1  
Frankly speaking, I couldn't see how this link answers the question. – Eugene Mayevski 'EldoS Corp May 11 '11 at 17:48
I hope that my clarification helps you to understand what I meant and remove my downvotes :) – Javi May 11 '11 at 22:08
Downvote removed with changes. – JYelton May 13 '11 at 16:53
feedback

Zip files have a table of contents. Every zip utility should have the ability to query just the TOC. Or you can use a command line program like 7zip -t to print the table of contents and redirect it to a text file.

link|improve this answer
feedback

In such case you will need to parse zip local header entries. Each file, stored in zip file, has preceding Local File Header entry, which (normally) contains enough information for decompression, Generally, you can make simple parsing of such entries in stream, select needed file, copy header + compressed file data to other file, and call unzip on that part (if you don't want to deal with the whole Zip decompression code or library).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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