Bz2 Decompression in C#

社会主义新天地 提交于 2019-12-23 09:37:40

问题


Im looking for an example of how to decompress a bz2 file. I download the file via a control flow in an SSIS package, I would like to kick off a Script Task using some C# code to decompress the downloaded bz2 file. It doesn't seem that the decompression library that comes with .net handles bz2 files. Could someone show me an implimentation that could? or direct me to an example of decompressing a bz2 file to a specified folder?


回答1:


7-zip comes with bzip2 support (and many many more formats) and a C# wrapper.




回答2:


SharpZipLib is what you're looking for.

#ziplib (SharpZipLib, formerly NZipLib) is a Zip, GZip, Tar and BZip2 library written entirely in C# for the .NET platform.



来源:https://stackoverflow.com/questions/6708454/bz2-decompression-in-c-sharp

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!