How can i compress and decompress .bz2 file in c#?
I want to decompress .bz2 file into .mdb extension and vice-versa through code. C开发者_运维百科an someone share how to do it through code?
SharpZipLib supports BZip2 files. You should be able to use their examples to get what you need.
Try Nuget
Note that .bz2 corresponds to bzip2 format, which explains the query in the link above.
精彩评论