I have a problem when my code executes this with:
using (ZipFile archive = ZipFile.Read(File))
{
foreach (ZipEntry entry in archive.Entries)
{
entry.Extract(UnZipFolder.Name.ToString(), ExtractExistingFileAction.OverwriteSilently);
}
}
Failure when ZipFile tries to read my file, that it is a line and contains, sincrofit.zip, then crash and throw this exception:
'System.ArgumentException' Additional information: "IBM437" is not a supported encoding name.
source
share