John Wheal
John Wheal

Reputation: 10348

Extract .tbz file using .net

I'm trying to extract a .tbz file using .net

Anyone have any suggestions?

The file will be very large (3GB) if this makes any difference.

Upvotes: 0

Views: 275

Answers (2)

Nate C-K
Nate C-K

Reputation: 5932

You can use SharpZipLib:

http://www.icsharpcode.net/opensource/sharpziplib/

However, it is licensed under the GPL, with an exception that I'm not familiar with, so you'll have to read carefully to see if it suits your needs.

Upvotes: 0

Grant Thomas
Grant Thomas

Reputation: 45083

First you'll need to know about, how to implement, or use a supporting library for BZIP2 decompression. Then you will need to do the same, in a different fashion, and de-archive the contents of the resulting TAR file.

Upvotes: 1

Related Questions