博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 解压及压缩文件源代码
阅读量:5950 次
发布时间:2019-06-19

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

using System.IO;using System.Windows.Forms;using ICSharpCode.SharpZipLib.Zip;using ICSharpCode.SharpZipLib.Checksums;   public void unZip(string strSouceFile, string strDestFile)        {            if (!Directory.Exists(strDestFile))                Directory.CreateDirectory(strDestFile);            using (ZipInputStream zip = new ZipInputStream(File.OpenRead(strSouceFile)))            {                ZipEntry theEntry;                string fileName;                FileStream streamWriter;                while ((theEntry = zip.GetNextEntry()) != null)                {                    fileName = Path.GetFileName(theEntry.Name);                    if (fileName != String.Empty)                    {                        streamWriter = new FileStream(strDestFile + fileName, FileMode.Create, FileAccess.Write, FileShare.Read | FileShare.Write);                        int size = 2048;                        byte[] data = new byte[2048];                        while (true)                        {                            size = zip.Read(data, 0, data.Length);                            if (size > 0)                            {                                streamWriter.Write(data, 0, size);                            }                            else                            {                                break;                            }                        }                        streamWriter.Close();                    }                }                MessageBox.Show("解压文件成功!

","提示",MessageBoxButtons.OK,MessageBoxIcon.Information); } } public void ZipFile(string strSouceFile, string strDestFile) { using (ZipOutputStream stream = new ZipOutputStream(File.Create(strDestFile))) { stream.SetLevel(5); byte[] buffer = new byte[0x1000]; ZipEntry entry = new ZipEntry(Path.GetFileName(strSouceFile)); entry.DateTime = DateTime.Now; stream.PutNextEntry(entry); using (FileStream stream2 = File.OpenRead(strSouceFile)) { int num; do { num = stream2.Read(buffer, 0, buffer.Length); stream.Write(buffer, 0, num); } while (num > 0); MessageBox.Show("压缩文件成功!

"); } stream.Finish(); stream.Close(); } }

须要引用的dll,下载下面页面的dll
http://download.csdn.net/detail/sky_cat/7236675

转载地址:http://keixx.baihongyu.com/

你可能感兴趣的文章
oracle 相除后保留指定位数小数round()
查看>>
一键安装thrift-0.9.0的脚本
查看>>
2.1. 托管对象模型是什么(Core Data 应用程序实践指南)
查看>>
iOS learning website
查看>>
Floyd算法简介
查看>>
正则 挖网站表格复习
查看>>
windows server 2008 R2开机进度条闪过后黑屏
查看>>
更改MySQL数据库的编码为utf8mb4
查看>>
第一次作业
查看>>
NUC1371 Who's in the Middle【中位数+排序】
查看>>
UVA10391 ZOJ1825 Compound Words【SET+暴力】
查看>>
java 编写小工具 尝试 学习(七)
查看>>
使用ADempiere 3.6.0 LTS的WEB访问以及其他的一些访问方法及工具(基于Ubuntu Desktop 12.04 LTS)...
查看>>
docker~docker-compose和VS解决方案的关系
查看>>
架构,改善程序复用性的设计~目录(附核心原代码)
查看>>
CSS
查看>>
好用的在线作图工具
查看>>
虚基类
查看>>
hMailserver设置外部反病毒扫描程序
查看>>
Android Studio--》Gradle Scripts配置说明
查看>>