c#文件压缩zip或将zip文件解压的方法-创新互联
1.必须Dll:
创新互联自2013年创立以来,先为富顺等服务建站,富顺等地企业,进行企业商务咨询服务。为富顺企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。ICSharpCode.SharpZipLib.dll。可从Nutget程序包中获取。
2.压缩文件
////// 压缩文件成zip /// /// 压缩成zip文件的绝对路径 /// 被压缩指定文件的名字 /// ///public bool CreateZipFile(string fileZip,string fileName, string zipFilePath) { bool isZip = false; if (!Directory.Exists(zipFilePath)) { Logger.Info($"Cannot find directory {zipFilePath}", false, "FileToZip"); return isZip; } try { string[] filenames = Directory.GetFiles(zipFilePath); using (ZipOutputStream s = new ZipOutputStream(File.Create(fileZip))) { s.SetLevel(9); // 压缩级别 0-9 //s.Password = "123"; //Zip压缩文件密码 byte[] buffer = new byte[4096]; //缓冲区大小 foreach (string file in filenames.ToList()) { if (file== zipFilePath+fileName)//指定被压缩文件的绝对路径 { ZipEntry entry = new ZipEntry(Path.GetFileName(file)); entry.DateTime = DateTime.Now; s.PutNextEntry(entry); using (FileStream fs = File.OpenRead(file)) { int sourceBytes; do { sourceBytes = fs.Read(buffer, 0, buffer.Length); s.Write(buffer, 0, sourceBytes); } while (sourceBytes > 0); fs.Close(); fs.Dispose(); } break; } } s.Finish(); s.Close(); isZip = true; } } catch (Exception ex) { Logger.Info($"Exception during processing {0}", false, "FileToZip"); } return isZip; }
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
网页题目:c#文件压缩zip或将zip文件解压的方法-创新互联
浏览地址:http://myzitong.com/article/hiijo.html