Hello.
I am trying to extract files from a Microsoft .CAB file. I read the file format specifications (https://msdn.microsoft.com/en-us/library/bb417343.aspx#cabinet_format) and now I have a byte array for each file in the CAB.
The data, however, is compressed with MSZIP (and indeed adheres to the specifications at http://download.microsoft.com/download/5/D/D/5DD33FDF-91F5-496D-9884-0A0B0EE698BB/%5BMS-MCI%5D.pdf).
I already use SharpZipLib in my project for dealing with ZIP files. My question is can I use it to decompress the data I got from the CAB file.
Thanks!