Extracting a gz file content with zlib and save it

586 Views Asked by At

I want to uncompress a gz file (e.g. "MyFile.gz") and saving its content in a specified path using zlib in C++.

In other words, if the path is "C:\StoredData\", I would like to write a C++ function that creates the file "C:\StoredData\MyFile"

How can I write it?

2

There are 2 best solutions below

0
On

I do not understand what is the problem here. Once the data is uncompressed, you can write it anywhere you want using the File Stream. If you are facing any issues, you can edit your post. Sorry to post as answer, as i can't add comments.

0
On

Read the documentation in zlib.h. The gz* functions will do what you want on the uncompression side. Then you just write the uncompressed data wherever you like.