首页 > 学院 > 开发设计 > 正文

C# .NET 使用第三方类库DotNetZip解压/压缩Zip rar文件

2019-11-17 01:41:35
字体:
来源:转载
供稿:网友

C# .NET 使用第三方类库DotNetZip解压/压缩Zip rar文件

DotNetZip on CodePlex:http://dotnetzip.codeplex.com/

详细的可以看源代码……总之感觉比SharpZipLib好用。而且DotNetZip支持VB,C#以及任何.NET语言。

压缩:

//定义文件路径string filename = @"d:/test.rar";using (ZipFile zip = new ZipFile())            {                zip.AddFile(@"C:/text.txt", "txt");//将text文件存放在txt文件夹                zip.AddFile(@"C:/ReadMe.txt");//将ReadMe文件存放于更目录                zip.AddFile(@"C:/test.jpg", "images");//将test文件存放在images文件夹            }

  

解压:

using (ZipFile zip = new ZipFile(filename))            {                zip.ExtractAll("d://test", ExtractExistingFileAction.OverwriteSilently);            }

  


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表