本文介绍了C#.net中的ICSharpCode的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

朋友们,
我正在使用ICharpcode在我的项目中创建一个zip文件.
这是我的代码

 字符串 l_oZipPath;
l_oZipPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)+  @"  \"  + "  TestingZip" ;
ICSharpCode.SharpZipLib.Zip.FastZip z =  ICSharpCode.SharpZipLib.Zip.FastZip();
z.CreateEmptyDirectories =  true ;
z.CreateZip(l_oZipPath +  @"  \"  + DateTime.Now.ToString("   yyyy_MM_dd_HH_mm_ss")+ "  .zip" ,Program.SourceDirName,"  txt"); 


在这里,
Program.SourceDirName是目录名称.
目录中的三个文本文件. File1,File2,File3.我只想压缩File3.如何使用ICharpCode做到这一点?请帮助我.

解决方案


Hi friends,
I am using ICharpcode for creating a zip file in my Project.
This is my code

String l_oZipPath;
l_oZipPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\" + "TestingZip";
ICSharpCode.SharpZipLib.Zip.FastZip z = new ICSharpCode.SharpZipLib.Zip.FastZip();
z.CreateEmptyDirectories = true;
z.CreateZip(l_oZipPath + @"\" + DateTime.Now.ToString("yyyy_MM_dd_HH_mm_ss") + ".zip", Program.SourceDirName, false, "txt");


Here,
Program.SourceDirName is a Directory Name.
Three Text file in the Directory. File1,File2,File3 .I want to zip a File3 only.How can i achieve this using ICharpCode? Please Help me.

解决方案



这篇关于C#.net中的ICSharpCode的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 01:14