Ionic.Zip library unable to extract .rar file C#

强颜欢笑 提交于 2019-11-28 10:08:38

问题


I am trying to extract .rar file using .net zip library (Ionic.Zip.dll). I got error "cannot read that as a zipfile" while executing following code;

using (ZipFile zip1 = ZipFile.Read("E:\\APPS\\package.rar")){
}

I know the error is self explanatory but documentation of Ionic.Zip says that it can be used to extract .rar files. Any ideas?


回答1:


Well, I not found anywhere in description that DotNetZip can extract rar files. He can extract zip created with WinRAR but nowhere notice rar file can be extracted.

DotNetZip - Zip and Unzip in C#, VB, any .NET language

But, there is something interesting (link bellow) :

SharpCompress - a fully native C# library for RAR, 7Zip, Zip, Tar, GZip, BZip2



来源:https://stackoverflow.com/questions/31382210/ionic-zip-library-unable-to-extract-rar-file-c-sharp

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