Top "Gzipstream" questions

GZipStream is a .NET 2.0+ class for compression and decompression using gzip format.

GZipStream and decompression

I have code that should do the compression: FileStream fs = new FileStream("g:\\gj.txt", FileMode.Open); FileStream fd = new …

c# gzipstream compression
How do I read / write gzipped files in C++?

How do I read / write gzipped files in C++? The iostream wrapper classes here look good, and here is a …

c++ gzip zlib gzipstream
.NET GZipStream compress and decompress

What is wrong with this code below. I always get FALSE, meaning after compression, decompressed data does not match original …

.net compression gzipstream
Decompress byte array to string via BinaryReader yields empty string

I am trying to decompress a byte array and get it into a string using a binary reader. When the …

c# memorystream gzipstream binaryreader
How to pipe one readable stream into two writable streams at once in Node.js?

The goal is to: Create a file read stream. Pipe it to gzip (zlib.createGzip()) Then pipe the read stream …

node.js gzip zlib gzipstream node.js-stream
decompress a .gz file using GZipStream

I have several .gz files, and I want to decompress them one by one. I have writen a simple code …

c# filestream gzipstream
How to Decompress nested GZip (TGZ) files in C#

I am receiving a TGZ file that will contain one plain text file along with possibly one or more nested …

c# nested gzip gzipstream
GZipStream complains magic number in header is not correct

I'm attempting to use National Weather Service (U.S.) data, but something has changed recently and the GZip file no …

c# .net gzip gzipstream
Writing to the compression stream is not supported. Using System.IO.GZipStream

I get an exception when trying to decompress a (.gz) file using the GZipStream class that is included in the .…

c# .net compression gzipstream