質問

Is it possible to use fprintf in such a way that write data to a compressed file? For example:

fopen ("myfile.txt","w");

will write to a plain text file. So the file size grows very large.

役に立ちましたか?

解決

You can use zlib to write data to a compressed stream.

gzFile fp;
fp = gzopen(NAME, "wb");
gzprintf(fp, "Hello, %s!\n", "world");
gzclose(fp);

Compile it like this:

gcc -Wall -Wextra -o zprog zprog.c -lz

Use zcat to print the contents of the file.

他のヒント

The minimally-invasive solution if you're on a system that has pipes would be to open a pipe to an external gzip process. That way you can use all the normal stdio output functions without having to replace everything with zlib calls.

On Linux, you could use the zlib library (and link it as -lz) and use its compressed streams

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top