mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
Is it possible to uncompress a gzip file which is concatenated from multiple gzip files? #656
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @alex-b-123 on GitHub (Sep 3, 2024).
It looks like gunzip, winrar and 7zip all can uncompress multiple gzip files concatenated into one (as this link shows https://stackoverflow.com/a/15660705/19437625), however I'm only getting the first file out of the archive, when I uncompress.
I'm calling
GZipArchive.Open()followed by usingWriteToFile()on the one entry in the file.@adamhathcock commented on GitHub (Sep 5, 2024):
it looks like a manual concatention of files. I'm sure you'd have to write some code when the stream ends.
Could be a useful feature