进入 管理NuGet程序包搜索 DotNetZip 安装
解压代码
public static void unZipFile(string file, string unPath, string password = "")
{
using (ZipFile zip = new ZipFile(file, System.Text.Encoding.Default))
{
if (!string.IsNullOrEmpty(password))
{
zip.Password = password;
}
if (!Directory.Exists(unPath))
{
Directory.CreateDirectory(unPath);
}
zip.ExtractAll(unPath, ExtractExistingFileAction.OverwriteSilently);
}
}
压缩代码
// 压缩
public static string shrinkZipFile(string zipPath, List<string> filesPath,string password = null)
{
using (ZipFile zip = new ZipFile(System.Text.Encoding.Default)) //System.Text.Encoding.Default设置中文附件名称乱码,不设置会出现乱码
{
if (!string.IsNullOrWhiteSpace(password))
{
zip.Password = password;
}
foreach (var file in filesPath)
{
// 第二个参数为空,说明压缩的文件不会存在多层文件夹。比如C: test c.doc 压缩后解压文件会出现c.doc
// 如果改成zip.AddFile(file);则会出现多层文件夹压缩,比如C: test c.doc 压缩后解压文件会出现test c.doc
// zip.AddFile(file, "image"); // 表示把file 添加到images目录下
zip.AddFile(file,"");
}
zip.Save(zipPath);
}
return zipPath;
}
亲测有效,参数别传错就行。。。