C
C
GZip Decompress File
See more Gzip Examples
Demonstrates how to uncompress a .gz compressed file to get the uncompressed original file.Chilkat C Downloads
#include <C_CkGzip.h>
void ChilkatSample(void)
{
BOOL success;
HCkGzip gzip;
success = FALSE;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
gzip = CkGzip_Create();
success = CkGzip_UncompressFile(gzip,"qa_data/gzip/something.csv.gz","qa_output/something.csv");
if (success != TRUE) {
printf("%s\n",CkGzip_lastErrorText(gzip));
CkGzip_Dispose(gzip);
return;
}
printf("File successfully uncompressed and extracted from the Gzip compressed format.\n");
CkGzip_Dispose(gzip);
}