0
I have a file that is zipped by the 7-Zip, at the time of unzipping by the 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 happens the following Exception
:
The archive entry was compressed using an unsupported compression method.
How else could I unzip this file.
http://stackoverflow.com/questions/836736/unzip-files-programmatically-in-net
– Diego