I searched through the web to find out if there is any effective way to compress multiple files into one single file using either standard library or boost library. the goal is only compression of files, since decompression could be done manually.
Currently I am using ZipArchive library, but I want to use standard libraries or boost library. Any help would be appreciated in advance.
EDIT Since it seems that there is no way to compress multiple files into a single file in C++ using standard library, I am wondering what is the best suitable external library to do so. I have to mention that I only need to compress files, decompression of them would be done manually.