5 ways to compress/uncompress files in .NET
July 6, 2017 2 Comments
There are numerous compression algorithm out there for file compression. Here come 5 examples with how-to-do links from this blog.
Compressing individual files
The following algorithms can be used to compress a single file. E.g. source.txt will be compressed to source.txt.gz.
Compressing a group of files
The following algorithms can be used to group files and then compress the file group.
Read all posts dedicated to file I/O here.
benchmark pls.
András,
Currently I am using Ionic.zip (very old 1.9.1.8) in a production environment and have no problems at all. Having read your articles on the various zip capabilities now available in .Net made me wonder if I should replace that old unsupported Ionic.zip module with the official .Net one. Have you, by any chance, done any performance analysis of the .Net zip capabilities?
Best regards,
Lajos Szőke
On Thu, Jul 6, 2017 at 3:53 AM, Exercises in .NET with Andras Nemes wrote:
> Andras Nemes posted: “There are numerous compression algorithm out there > for file compression. Here come 5 examples with how-to-do links from this > blog. Compressing individual files The following algorithms can be used to > compress a single file. E.g. source.txt will be c” >