Click here to Skip to main content
15,910,981 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionExtracting .zip files Pin
Vipul Mehta16-Oct-07 6:25
Vipul Mehta16-Oct-07 6:25 
AnswerRe: Extracting .zip files Pin
Giorgi Dalakishvili16-Oct-07 6:49
mentorGiorgi Dalakishvili16-Oct-07 6:49 
GeneralRe: Extracting .zip files Pin
Vipul Mehta16-Oct-07 18:27
Vipul Mehta16-Oct-07 18:27 
AnswerRe: Extracting .zip files Pin
Shahar Gvirtz16-Oct-07 8:44
Shahar Gvirtz16-Oct-07 8:44 
AnswerRe: Extracting .zip files Pin
Vipul Mehta16-Oct-07 18:33
Vipul Mehta16-Oct-07 18:33 
AnswerRe: Extracting .zip files Pin
rtalan17-Oct-07 1:20
rtalan17-Oct-07 1:20 
GeneralRe: Extracting .zip files Pin
Vipul Mehta17-Oct-07 20:28
Vipul Mehta17-Oct-07 20:28 
AnswerRe: Extracting .zip files Pin
Mike Dimmick17-Oct-07 2:53
Mike Dimmick17-Oct-07 2:53 
ZIP is not GZip. They are different formats. GZip compresses a single stream of bytes, ZIP is a container for multiple files each of which can be compressed a different way (although conventionally the Deflate algorithm is used, unless that gives no compression in which case the original file is simply stored instead).

The ZIP format is documented[^]. Parsing it is actually pretty easy.

SharpZipLib does work but I've found it pretty slow.

The GZipStream and DeflateStream classes are primarily intended for the web support e.g. HttpWebRequest, because the HTTP protocol allows responses to be compressed. Java has ZIP classes because its class library format, JAR, is simply a renamed ZIP file. (An individual class's bytecode is stored in a .class file, early versions of Java did not allow you to bundle these up into a package, later versions added the Java ARchive, JAR, format.)


DoEvents: Generating unexpected recursion since 1991

QuestionVisual C++ with .NET Framework Pin
prithaa15-Oct-07 23:31
prithaa15-Oct-07 23:31 
AnswerRe: Visual C++ with .NET Framework Pin
Pete O'Hanlon16-Oct-07 2:15
mvePete O'Hanlon16-Oct-07 2:15 
AnswerRe: Visual C++ with .NET Framework Pin
rtalan17-Oct-07 0:25
rtalan17-Oct-07 0:25 
GeneralRe: Visual C++ with .NET Framework Pin
prithaa17-Oct-07 19:08
prithaa17-Oct-07 19:08 
GeneralRe: Visual C++ with .NET Framework Pin
rtalan18-Oct-07 0:19
rtalan18-Oct-07 0:19 
Question.NETCF compliance test? Pin
Member 9615-Oct-07 17:57
Member 9615-Oct-07 17:57 
AnswerRe: .NETCF compliance test? Pin
led mike16-Oct-07 6:33
led mike16-Oct-07 6:33 
GeneralRe: .NETCF compliance test? Pin
Member 9616-Oct-07 6:43
Member 9616-Oct-07 6:43 
GeneralRe: .NETCF compliance test? Pin
led mike16-Oct-07 6:53
led mike16-Oct-07 6:53 
GeneralRe: .NETCF compliance test? Pin
Patrick Etc.16-Oct-07 7:45
Patrick Etc.16-Oct-07 7:45 
QuestionProcess::Start doesn't Pin
Phyxion15-Oct-07 10:43
Phyxion15-Oct-07 10:43 
AnswerRe: Process::Start doesn't Pin
Dave Kreskowiak15-Oct-07 12:27
mveDave Kreskowiak15-Oct-07 12:27 
QuestionSSL - I'm Desperate Now Pin
#realJSOP15-Oct-07 6:29
professional#realJSOP15-Oct-07 6:29 
AnswerRe: SSL - I'm Desperate Now Pin
led mike15-Oct-07 8:34
led mike15-Oct-07 8:34 
AnswerRe: SSL - I'm Desperate Now Pin
Mike Dimmick15-Oct-07 13:10
Mike Dimmick15-Oct-07 13:10 
GeneralRe: SSL - I'm Desperate Now Pin
#realJSOP16-Oct-07 6:08
professional#realJSOP16-Oct-07 6:08 
QuestionOverwrite default DLL settings Pin
Luka Grabarevic15-Oct-07 0:35
Luka Grabarevic15-Oct-07 0:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.