문제

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