I have a file that is zipped by 7-Zip, at the time of unpacking by C #, using the following code:
try
{
ZipFile.ExtractToDirectory(caminho + "\" + arquivo, arquivo);
}
catch (Exception e)
{
MessageBox.Show(e.ToString());
}
Only this way does not decompress and the following Exception
happens:
The archive entry was compressed using an unsupported compression method.
How else could I unzip this file.