I am simply looking for a way to compress multiple files in a GZip file with the GZipStream class. Anybody has an idea how to do that?
In general, the gzip format doesn't support multiple files. Traditionally, one bundles multiple files using tar before compressing the result; you probably want to do something similar.