Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.6k views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...