if the zip file have chinese Directory, the output file will get wrong Directory Name
1232131.zip (264 Bytes)
I upload a demo, please have a look
string outpath = DateTime.Now.ToFileTime().ToString();
using (FileStream zipFile = System.IO.File.Open(filePath, FileMode.Open))
{
using (var archive = new Archive(zipFile))
{
archive.ExtractToDirectory(outpath);//no exception but wrong result
}
}