博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
.Net文件压缩
阅读量:5144 次
发布时间:2019-06-13

本文共 1206 字,大约阅读时间需要 4 分钟。

NuGet中下载Ionic.Zip:

public static class ZipHelper    {        ///         /// 压缩文件        ///         /// 要压缩的文件夹地址        /// 压缩后的新文件        /// 
true成功,false失败
public static bool Zip(string FileFolder, string File) { try { using (ZipFile zip = new ZipFile()) { zip.CompressionLevel = Ionic.Zlib.CompressionLevel.Default; zip.AddDirectory(FileFolder); zip.Save(File); } return true; } catch (Exception) { return false; } } /// /// 解压文件 /// /// 要解压的文件 /// 压缩后的文件夹地址 ///
true成功,false失败
public static bool UnZip(string File, string FileFolder) { try { using (ZipFile zip = new ZipFile(File)) { zip.ExtractAll(FileFolder); } return true; } catch (Exception) { return false; } } }

 

转载于:https://www.cnblogs.com/MrZheng/p/8968166.html

你可能感兴趣的文章
[ZJOI2019]线段树
查看>>
[WC2018]通道
查看>>
LGP5495 Dirichlet 前缀和
查看>>
[PKUSC2018]神仙的游戏
查看>>
uoj#311 【UNR #2】积劳成疾
查看>>
【LGP5350】序列
查看>>
[清华集训]序列操作
查看>>
CF896C Willem, Chtholly and Seniorious
查看>>
[JSOI2015]最大公约数
查看>>
【CF765F】Souvenirs
查看>>
uoj#209【UER #6】票数统计
查看>>
loj6031「雅礼集训 2017 Day1」字符串
查看>>
loj6198 谢特
查看>>
uoj#370【UR #17】滑稽树上滑稽果
查看>>
uoj139 【UER #4】被删除的黑白树
查看>>
[CTSC2017]密钥
查看>>
uoj213 【UNR #1】争夺圣杯
查看>>
20190907爆零记
查看>>
[MtOI2019]幽灵乐团
查看>>
uoj74 【UR #6】破解密码
查看>>