代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
CSharp
】
压缩解压缩文件(zip格式)
作者:
Egbert
/ 发布于
2016/1/4
/
1117
using System; using System.Collections.Generic; using System.IO; using ICSharpCode.SharpZipLib.Zip; namespace TestConsole { internal class Program { private static void Main() { //CreateZipFile(@"d:\", @"d:\a.zip"); UnZipFile(@"E:\我的桌面.zip"); Console.Read(); } /// <summary> /// 压缩文件为zip包 /// </summary> /// <param name="filesPath"></param> /// <param name="zipFilePath"></param> private static bool CreateZipFile(string filesPath, string zipFilePath) { if (!Directory.Exists(filesPath)) { return false; } try { string[] filenames = Directory.GetFiles(filesPath); using (var s = new ZipOutputStream(File.Create(zipFilePath))) { s.SetLevel(9); // 压缩级别 0-9 //s.Password = "123"; //Zip压缩文件密码 var buffer = new byte[4096]; //缓冲区大小 foreach (string file in filenames) { var 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); } } s.Finish(); s.Close(); } return true; } catch (Exception ex) { Console.WriteLine("Exception during processing {0}", ex); } return false; } /// <summary> /// 文件解压(zip格式) /// </summary> /// <param name="zipFilePath"></param> /// <returns></returns> private static List<FileInfo> UnZipFile(string zipFilePath) { var files = new List<FileInfo>(); var zipFile = new FileInfo(zipFilePath); if (!File.Exists(zipFilePath)) { return files; } using (var zipInputStream = new ZipInputStream(File.OpenRead(zipFilePath))) { ZipEntry theEntry; while ((theEntry = zipInputStream.GetNextEntry()) != null) { if (zipFilePath != null) { string dir = Path.GetDirectoryName(zipFilePath); if (dir != null) { string dirName = Path.Combine(dir, zipFile.Name.Replace(zipFile.Extension, "")); string fileName = Path.GetFileName(theEntry.Name); if (!string.IsNullOrEmpty(dirName)) { if (!Directory.Exists(dirName)) { Directory.CreateDirectory(dirName); } } if (!string.IsNullOrEmpty(fileName)) { string filePath = Path.Combine(dirName, theEntry.Name); using (FileStream streamWriter = File.Create(filePath)) { var data = new byte[2048]; while (true) { int size = zipInputStream.Read(data, 0, data.Length); if (size > 0) { streamWriter.Write(data, 0, size); } else { break; } } } files.Add(new FileInfo(filePath)); } } } } } return files; } } } /// <summary> /// 文件解压(Rar格式) /// </summary> /// <param name="rarFilePath"></param> /// <returns></returns> public static List<FileInfo> UnRarFile(string rarFilePath) { var files = new List<FileInfo>(); var fileInput = new FileInfo(rarFilePath); if (fileInput.Directory != null) { string dirName = Path.Combine(fileInput.Directory.FullName, fileInput.Name.Replace(fileInput.Extension, "")); if (!string.IsNullOrEmpty(dirName)) { if (!Directory.Exists(dirName)) { Directory.CreateDirectory(dirName); } } dirName = dirName.EndsWith("\\") ? dirName : dirName + "\\"; //最后这个斜杠不能少! string shellArguments = string.Format("x -o+ {0} {1}", rarFilePath, dirName); using (var unrar = new Process()) { unrar.StartInfo.FileName = @"C:\Program Files\WinRAR\WinRAR.exe"; //WinRar安装路径! unrar.StartInfo.Arguments = shellArguments; //隐藏rar本身的窗口 unrar.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; unrar.Start(); unrar.WaitForExit(); //等待解压完成 unrar.Close(); } var dir = new DirectoryInfo(dirName); files.AddRange(dir.GetFiles()); } return files; } ///// <summary> ///// 文件解压2(rar格式)使用SharpCompress组件 需.net 3.5以上才支持! ///// </summary> ///// <param name="rarFilePath"></param> ///// <returns></returns> //private static List<FileInfo> UnRarFile(string rarFilePath) //{ // var files = new List<FileInfo>(); // if (File.Exists(rarFilePath)) // { // var fileInput = new FileInfo(rarFilePath); // using (Stream stream = File.OpenRead(rarFilePath)) // { // var reader = ReaderFactory.Open(stream); // if (fileInput.Directory != null) // { // string dirName = Path.Combine(fileInput.Directory.FullName, fileInput.Name.Replace(fileInput.Extension, "")); // if (!string.IsNullOrEmpty(dirName)) // { // if (!Directory.Exists(dirName)) // { // Directory.CreateDirectory(dirName); // } // } // while (reader.MoveToNextEntry()) // { // if (!reader.Entry.IsDirectory) // { // reader.WriteEntryToDirectory(dirName, ExtractOptions.ExtractFullPath | ExtractOptions.Overwrite); // files.Add(new FileInfo(reader.Entry.FilePath)); // } // } // } // } // } // return files; //}
试试其它关键字
压缩解压缩
同语言下
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
Egbert
贡献的其它代码
(
20
)
.
删除服务器上文件
.
DbHelper-SQL数据库访问助手
.
SQL Server判断数据库、表、存储过程、函数是否存在
.
SQL 字符串去除空格函数
.
RegistryHelper-注册表辅助类
.
查询MySql数据库架构信息:数据库,表,表字段
.
HttpOperater-模拟HTTP操作类
.
设置文件夹用户权限
.
AppPoolService-IIS应用程序池辅助类
.
FileHelper-文件操作辅助类
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3