How to list the contents of a zipped folder in C#? For example how to know how many items are contained within a zipped folder, and what is their name?
|
|
If you are using .Net Framework 3.0 or later, check out the System.IO.Packaging Namespace. This will remove your dependancy on an external library. Specifically check out the ZipPackage Class. |
||||
|
|
|
Check into SharpZipLib (roughly coded up)
|
|||
|
|
|
DotNetZip - Zip file manipulation in .NET languages DotNetZip is a small, easy-to-use class library for manipulating .zip files. It can enable .NET applications written in VB.NET, C#, any .NET language, to easily create, read, and update zip files. sample code to read a zip:
|
||||
|
|
|
There are a number of libraries for .NET available, with different licensing requirements. Here is a intro article on the topic: Article |
||||
|
|
|
I'm relatively new here so maybe I'm not understanding what's going on. :-) There are currently 4 answers on this thread where the two best answers have been voted down. (Pearcewg's and cxfx's) The article pointed to by pearcewg is important because it clarifies some licensing issues with SharpZipLib. We recently evaluated several .Net compression libraries, and found that DotNetZip is currently the best aleternative. Very short summary:
So for starters, I voted those two answers up. Kim. |
||||||
|
|
|
Ick - that code using the J# runtime is hideous! And I don't agree that it is the best way - J# is out of support now. And it is a HUGE runtime, if all you want is ZIP support. How about this - it uses DotNetZip (Free, MS-Public license)
|
||
|
|
|
|
The best way is to use the .NET built in J# zip functionality, as shown in MSDN: http://msdn.microsoft.com/en-us/magazine/cc164129.aspx. In this link there is a complete working example of an application reading and writing to zip files. For the concrete example of listing the contents of a zip file (in this case a Silverlight .xap application package), the code could look like this:
Aydsman had a right pointer, but there are problems. Specifically, you might find issues opening zip files, but is a valid solution if you intend to only create pacakges. ZipPackage implements the abstract Package class and allows manipulation of zip files. There is a sample of how to do it in MSDN: http://msdn.microsoft.com/en-us/library/ms771414.aspx. Roughly the code would look like this:
The best way seems to use J#, as shown in MSDN: http://msdn.microsoft.com/en-us/magazine/cc164129.aspx There are pointers to more c# .zip libraries with different licenses, like SharpNetZip and DotNetZip in this article: http://stackoverflow.com/questions/265549/how-to-read-files-from-uncompressed-zip-in-c. They might be unsuitable because of the license requirements. |
||||
|
