How do you copy a group of files from server machine to local hard disk through a C++ web application in one request? This is kind of downloading bulk files to your local machine from a server. I guess in Java you could do this through ZipInputStream and GZipInputStream.
Is it possible to achieve this entirely through server side code? Or will it require a client running on the local machine to carry out the bulk copying of files?