34 gz_file = gzopen(fileName.c_str(),
"wb");
36 assert(Z_NULL != gz_file &&
"The zip file should be created successfully and please check your path settings.");
38 unsigned long int file_size =
sizeof(char) *
data.str().size();
40 gzwrite(gz_file, (
void *)(
data.str().data()), file_size);
48 if (stat(
filename.c_str(), &buf) != -1)