Searching for compression library in c# that supports rar format
Asked Answered
E

3

5

I want to add in my application functionality to decompress (and optionally compress) files in various format. I have libraries that supports zip, gzip, 7zip and bzip2. But still not found library that support rar.
I know that rar is commercial, but maybe there is some .net library that could be used to decompress rar-s? The best would be free library, but library with small price is also acceptable.

Eozoic answered 6/4, 2011 at 9:45 Comment(0)
S
4

The compression algorithm is closed source but the decompression algorithm is open source. The author encourages people to broaden support for RAR decompressors, and a number of portable versions exist. for decompress rar file you can use C# (.net) interface for 7-Zip archive dlls

Suction answered 6/4, 2011 at 9:52 Comment(0)
M
5

Try SevenZipSharp. It supports extraction of RAR files and everything else that 7-zip supports.

Malvaceous answered 6/4, 2011 at 9:50 Comment(0)
S
4

The compression algorithm is closed source but the decompression algorithm is open source. The author encourages people to broaden support for RAR decompressors, and a number of portable versions exist. for decompress rar file you can use C# (.net) interface for 7-Zip archive dlls

Suction answered 6/4, 2011 at 9:52 Comment(0)
B
0

My project SharpCompress extracts RAR and other formats in native C# with no external DLLs needed.

Boyish answered 9/3, 2012 at 13:37 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.