gzipstream
Using .NET GZipStream Class with Mono
I\'m trying to build an example from GZipStream Class. With the command gmcs gzip.cs, I got error 开发者_开发百科messages. gzip.cs is the same source from the msdn.[详细]
2023-03-05 16:35 分类:问答How to create a zip file using encoded string in C#
I\'m new to C# and using C#.Net 2.0 with Visual Studio 2005. How can I create a zip file from a string using GZipStream. (I don\'t want to use any third party libraries and doing this purely using C[详细]
2023-03-02 15:20 分类:问答GZipStream not working
I am using the following C# code to compress a file: // Open the stream we want to compress FileStream fs = File.Create(@\"C:\\Projects\\Samples\\test\\compressed.zip\", 0);[详细]
2023-02-22 16:16 分类:问答Is there a problem with IO.Compression?
I\'ve just started compressing file in VB.Net, using the following code. Since I\'m targeting Fx 2.0, I can\'t use the Stream.CopyTo method.[详细]
2023-02-10 14:32 分类:问答"Invalid use of response filter" when compressing response from an IHttpHandler
I have an IHttpHandler returning a file.When the response stream is compressed, either automatically using Telerik RadCompression or by explicitly setting a filter using[详细]
2023-02-07 04:20 分类:问答Compressing and Decompressing Folders in C#
I want to compress and decompress a folder using C#. The problem with GZipStream is that it takes filenames and hence I need to write a recursive logic.[详细]
2023-02-06 06:31 分类:问答Is there a way to know if the byte[] has been compressed by gzipstream?
Is there a way to know if the byte[] has been compressed (or开发者_C百科 not) by GzipStream .net class?[详细]
2023-02-03 22:19 分类:问答How to compress or Zip whole folder using GZipStream
Any idea how I can do t开发者_运维知识库his? I am able to compress a single file.You cannot GZip an entire folder directly, since GZip operates on a single stream of data.You will first have to turn t[详细]
2023-01-26 02:46 分类:问答How to compress multiple files in a GZip file with the GZipStream class?
I am simply looking for a way to compress multiple files in a GZip file开发者_开发百科 with the GZipStream class. Anybody has an idea how to do that?In general, the gzip format doesn\'t support multip[详细]
2023-01-23 17:40 分类:问答downloading large amount of files
I\'m researching solutions for a potential client. They\'re requesting the ability to download a large amount of MP3\'s (1000+) from their online catalog.[详细]
2023-01-22 11:12 分类:问答