Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Read content of RAR files using C#

Tags:

c#

stream

rar

Is there any way to read the content of a RAR file (support for multi-file RAR is a must)?

I don't want to extract the content to the disk, just read it like a stream.

like image 702
Peter Avatar asked Jun 22 '09 07:06

Peter


1 Answers

Low level lib to work with 7z.dll (supports rar archives, incliding multi-part, works with .net streams):

C# (.net) interface for 7-Zip archive dlls

And more high-level lib based on the first one:

SevenZipSharp

like image 132
arbiter Avatar answered Sep 29 '22 12:09

arbiter