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.
1try (CabArchive archive = new CabArchive("installer.cab")) {
2 archive.extractToDirectory("C:\\extracted");
3}
The only option that library allows now is to extract whole archive.