Investigate if 7Zip itself can guess format from stream
7-Zip can open vmdk files, however when I try to open them with SevenZipExtractor it throws an exception "Unable to guess format automatically".
Any thoughts on how to get it to work?
Thank you, Fidel
Hi, SevenZipExtractor guess format by first bytes of file. see FileSignatures: https://github.com/adoconnection/SevenZipExtractor/blob/master/SevenZipExtractor/Formats.cs
if you can add signature for vmdk, SevenZipExtractor will start guessing it.
Hi ado. A big thanks for your efforts on the project. It's very useful.
Rather than hard-coding the supported formats, I'm wondering if the native DLL exposes a method which returns true if the file is supported...
someone need to dive into 7zip and see if this possible