CAB extraction
Contents
[
Hide
Show
]Overview
Cab is popular Microsoft Windows archiving format. You can extract such an archive with Aspose.Zip similarly as other archives.
1 using (var archive = new CabArchive("installer.cab"))
2 {
3 archive.ExtractToDirectory(@"C:\extracted");
4 }
The only option that library allows now is to extract whole archive.