当前位置:首页 > 开发教程 > IT博文 > 软件工程 >

ICSharpCode.SharpZipLib.dll实现压缩解压一个树形目录

时间:2013-09-27 10:41 来源:互联网 作者:源码搜藏 收藏

[csharp] view plaincopy using System; using System.IO; using ICSharpCode.SharpZipLib.Checksums; using ICSharpCode.SharpZipLib.Zip; using ICSharpCode.SharpZipLib.GZip; using System.Collections; namespace ZipSharpLibray.Common.Control { ///s
[csharp] view plaincopy
  1. using System;  
  2.   
  3. using System.IO;  
  4.   
  5. using ICSharpCode.SharpZipLib.Checksums;   
  6.   
  7. using ICSharpCode.SharpZipLib.Zip;   
  8.   
  9. using ICSharpCode.SharpZipLib.GZip;  
  10.   
  11. using System.Collections;   
  12.   
  13. namespace ZipSharpLibray.Common.Control  
  14.   
  15. {  
  16.   
  17.  /// <summary>  
  18.   
  19.  /// Class1 的摘要说明。  
  20.   
  21.  /// </summary>  
  22.   
  23.  public class FileZipCreate  
  24.   
  25.  {  
  26.   
  27.   private static FileZipCreate filezipcreate=null;  
  28.   
  29.   private string zipfilecreatename;  
  30.   
  31.   private string filesdirectorypath;  
  32.   
  33.   private int dirnamelength = 0;  
  34.   
  35.   private int ziplevel = 6;  
  36.   
  37.   private FileZipCreate()  
  38.   
  39.   {  
  40.   
  41.    //  
  42.   
  43.    // TODO: 在此处添加构造函数逻辑  
  44.   
  45.    //  
  46.   
  47.   }  
  48.   
  49.   /// <summary>  
  50.   
  51.   /// 压缩后的文件的全名称  
  52.   
  53.   /// </summary>  
  54.   
  55.   public string ZipFileCreateName  
  56.   
  57.   {  
  58.   
  59.    set  
  60.   
  61.    {  
  62.   
  63.     this.zipfilecreatename=value;  
  64.   
  65.    }  
  66.   
  67.    get  
  68.   
  69.    {  
  70.   
  71.     return this.zipfilecreatename;  
  72.   
  73.    }  
  74.   
  75.   }  
  76.   
  77.   /// <summary>  
  78.   
  79.   /// 待压缩文件目录  
  80.   
  81.   /// </summary>  
  82.   
  83.   public string FileDirectoryPath  
  84.   
  85.   {  
  86.   
  87.    set  
  88.   
  89.    {  
  90.   
  91.     this.filesdirectorypath=value;  
  92.   
  93.    }  
  94.   
  95.    get  
  96.   
  97.    {  
  98.   
  99.     return this.filesdirectorypath;  
  100.   
  101.    }  
  102.   
  103.   }  
  104.   
  105.   public int ZipLevel  
  106.   
  107.   {  
  108.   
  109.    set  
  110.   
  111.    {  
  112.   
  113.     this.ziplevel=value;  
  114.   
  115.    }  
  116.   
  117.    get  
  118.   
  119.    {  
  120.   
  121.     return this.ziplevel;  
  122.   
  123.    }  
  124.   
  125.   }  
  126.   
  127.   public static FileZipCreate ZipFileInstance()  
  128.   
  129.   {  
  130.   
  131.       
  132.   
  133.    if(filezipcreate==null)  
  134.   
  135.    {  
  136.   
  137.     filezipcreate=new FileZipCreate();  
  138.   
  139.    }  
  140.   
  141.    return filezipcreate;  
  142.   
  143.   }  
  144.   
  145.   /// <summary>  
  146.   
  147.   /// 压缩文件的方法  
  148.   
  149.   /// </summary>  
  150.   
  151.   public void ZipFileCreate()  
  152.   
  153.   {  
  154.   
  155.    ZipOutputStream zipoutputstream= new ZipOutputStream(File.Create(this.zipfilecreatename));   
  156.   
  157.    zipoutputstream.SetLevel(this.ziplevel);  
  158.   
  159.    Crc32 crc = new Crc32();   
  160.   
  161.    Hashtable fileList=this.getAllFies();  
  162.   
  163.    foreach (DictionaryEntry item in fileList)  
  164.   
  165.    {  
  166.   
  167.     FileStream fs = File.OpenRead(item.Key.ToString());   
  168.   
  169.     byte[] buffer = new byte[fs.Length];   
  170.   
  171.     fs.Read(buffer, 0, buffer.Length);   
  172.   
  173.     ZipEntry entry = new ZipEntry(item.Key.ToString().Substring(this.filesdirectorypath.Length-this.dirnamelength));  
  174.   
  175.     entry.DateTime = (DateTime)item.Value;   
  176.   
  177.     entry.Size = fs.Length;   
  178.   
  179.     fs.Close();   
  180.   
  181.     crc.Reset();   
  182.   
  183.     crc.Update(buffer);   
  184.   
  185.     entry.Crc = crc.Value;   
  186.   
  187.     zipoutputstream.PutNextEntry(entry);   
  188.   
  189.     zipoutputstream.Write(buffer, 0, buffer.Length);   
  190.   
  191.    }  
  192.   
  193.    zipoutputstream.Finish();   
  194.   
  195.    zipoutputstream.Close();   
  196.   
  197.   }  
  198.   
  199.   /// <summary>  
  200.   
  201.   /// 获取所有文件  
  202.   
  203.   /// </summary>  
  204.   
  205.   /// <returns></returns>  
  206.   
  207.   private Hashtable getAllFies()  
  208.   
  209.   {  
  210.   
  211.    Hashtable FilesList = new Hashtable();  
  212.   
  213.    DirectoryInfo fileDire = new DirectoryInfo(this.filesdirectorypath);  
  214.   
  215.    if(!fileDire.Exists)  
  216.   
  217.    {  
  218.   
  219.     throw new System.IO.FileNotFoundException("目录:"+ fileDire.FullName + "没有找到!");  
  220.   
  221.    }  
  222.   
  223.    this.dirnamelength=fileDire.Name.Length;  
  224.   
  225.    this.getAllDirFiles(fileDire,FilesList);  
  226.   
  227.    this.getAllDirsFiles(fileDire.GetDirectories(),FilesList);  
  228.   
  229.    return FilesList;  
  230.   
  231.   }  
  232.   
  233.   /// <summary>  
  234.   
  235.   /// 获取一个文件夹下的所有文件夹里的文件  
  236.   
  237.   /// </summary>  
  238.   
  239.   /// <param name="dirs"></param>  
  240.   
  241.   /// <param name="filesList"></param>  
  242.   
  243.   private void getAllDirsFiles(DirectoryInfo[] dirs, Hashtable filesList)  
  244.   
  245.   {  
  246.   
  247.    foreach (DirectoryInfo dir in dirs)  
  248.   
  249.    {  
  250.   
  251.     foreach (FileInfo file in dir.GetFiles("*.*"))  
  252.   
  253.     {  
  254.   
  255.      filesList.Add(file.FullName,file.LastWriteTime);  
  256.   
  257.     }  
  258.   
  259.     this.getAllDirsFiles(dir.GetDirectories(),filesList);  
  260.   
  261.    }  
  262.   
  263.   }  
  264.   
  265.   /// <summary>  
  266.   
  267.   /// 获取一个文件夹下的文件  
  268.   
  269.   /// </summary>  
  270.   
  271.   /// <param name="strDirName">目录名称</param>  
  272.   
  273.   /// <param name="filesList">文件列表HastTable</param>  
  274.   
  275.   private void getAllDirFiles(DirectoryInfo dir,Hashtable filesList)  
  276.   
  277.   {  
  278.   
  279.    foreach (FileInfo file in dir.GetFiles("*.*"))  
  280.   
  281.    {  
  282.   
  283.     filesList.Add(file.FullName, file.LastWriteTime);  
  284.   
  285.    }  
  286.   
  287.   }  
  288.   
  289.  }  
  290.   
  291. }  
  292.   
  293.   
  294.   
  295.   
  296.   
  297. //解压  
  298.   
  299.   
  300.   
  301. using System;  
  302.   
  303. using System.IO;  
  304.   
  305. using ICSharpCode.SharpZipLib.Checksums;   
  306.   
  307. using ICSharpCode.SharpZipLib.Zip;   
  308.   
  309. using ICSharpCode.SharpZipLib.GZip;  
  310.   
  311.   
  312.   
  313. namespace ZipSharpLibray.Common.Control  
  314.   
  315. {  
  316.   
  317.  /// <summary>  
  318.   
  319.  /// UZipFilesCreate 的摘要说明。  
  320.   
  321.  /// </summary>  
  322.   
  323.  public class UZipFilesCreate  
  324.   
  325.  {  
  326.   
  327.   private string zipfilename;  
  328.   
  329.   private string filescreatepath;  
  330.   
  331.   private static UZipFilesCreate uzipfilescreate=null;  
  332.   
  333.   private UZipFilesCreate()  
  334.   
  335.   {  
  336.   
  337.    //  
  338.   
  339.    // TODO: 在此处添加构造函数逻辑  
  340.   
  341.    //  
  342.   
  343.   }  
  344.   
  345.   /// <summary>  
  346.   
  347.   /// Zip文件目录  
  348.   
  349.   /// </summary>  
  350.   
  351.   public string ZipFileName  
  352.   
  353.   {  
  354.   
  355.    set  
  356.   
  357.    {  
  358.   
  359.     this.zipfilename=value;  
  360.   
  361.    }  
  362.   
  363.    get  
  364.   
  365.    {  
  366.   
  367.     return this.zipfilename;  
  368.   
  369.    }  
  370.   
  371.   }  
  372.   
  373.   /// <summary>  
  374.   
  375.   /// 解压文件目录  
  376.   
  377.   /// </summary>  
  378.   
  379.   public string filesCreatePath  
  380.   
  381.   {  
  382.   
  383.    set  
  384.   
  385.    {  
  386.   
  387.     this.filescreatepath=value;  
  388.   
  389.    }  
  390.   
  391.    get  
  392.   
  393.    {  
  394.   
  395.     return this.filescreatepath;  
  396.   
  397.    }  
  398.   
  399.   }  
  400.   
  401.   public static UZipFilesCreate UZipFilesInstance()  
  402.   
  403.   {  
  404.   
  405.    if(uzipfilescreate==null)  
  406.   
  407.    {  
  408.   
  409.     uzipfilescreate=new UZipFilesCreate();  
  410.   
  411.    }  
  412.   
  413.    return uzipfilescreate;  
  414.   
  415.   }  
  416.   
  417.   public void UZipCreateFiles()  
  418.   
  419.   {  
  420.   
  421.    ZipEntry entry;  
  422.   
  423.    ZipInputStream zipinputstream = new ZipInputStream(File.OpenRead(this.zipfilename));    
  424.   
  425.    while ((entry = zipinputstream.GetNextEntry()) != null)   
  426.   
  427.    {  
  428.   
  429.     this.CreateDirList(entry.Name);  
  430.   
  431.     string strPath=this.filescreatepath+"//"+entry.Name;  
  432.   
  433.     FileStream streamWriter =File.Create(strPath);   
  434.   
  435.     byte[] data = new byte[entry.Size];   
  436.   
  437.     zipinputstream.Read(data, 0, data.Length);   
  438.   
  439.     streamWriter.Write(data, 0, data.Length);   
  440.   
  441.     streamWriter.Close();   
  442.   
  443.     File.SetLastWriteTime(strPath,entry.DateTime);  
  444.   
  445.    }  
  446.   
  447.    zipinputstream.Close();   
  448.   
  449.   }  
  450.   
  451.   private void CreateDirList(string filename)  
  452.   
  453.   {  
  454.   
  455.    string dirName=this.filescreatepath;  
  456.   
  457.    string[] dirlevelname=filename.Split('//');  
  458.   
  459.    for(int i=0;i<dirlevelname.Length-1;i++)  
  460.   
  461.    {  
  462.   
  463.     dirName+="//"+dirlevelname[i];  
  464.   
  465.     if(Directory.Exists(dirName))  
  466.   
  467.     {  
  468.   
  469.      continue;  
  470.   
  471.     }  
  472.   
  473.     Directory.CreateDirectory(dirName);  
  474.   
  475.    }  
  476.   
  477.   }  
  478.   
  479.  }  
  480.   
  481. }   
  482.   
  483.   
  484.   
  485. //调用  
  486.   
  487.   
  488.   
  489. using ZipSharpLibray.Common.Control;  
  490.   
  491.   
  492.   
  493. ......  
  494.   
  495.   
  496.   
  497. private void Button1_Click(object sender, System.EventArgs e)  
  498.   
  499.   {  
  500.   
  501.   
  502.   
  503.   //压缩  
  504.   
  505.    FileZipCreate filezipcreate=FileZipCreate.ZipFileInstance();  
  506.   
  507.    filezipcreate.ZipFileCreateName=Server.MapPath(DateTime.Now.ToString("yyyyMMddmmss")+".zip");  
  508.   
  509.    filezipcreate.FileDirectoryPath=Server.MapPath("../Admin/Css");  
  510.   
  511.     filezipcreate.ZipFileCreate();  
  512.   
  513.   }  
  514.   
  515.   
  516.   
  517.   private void Button2_Click(object sender, System.EventArgs e)  
  518.   
  519.   {  
  520.   
  521.   
  522.   
  523.   //解压  
  524.   
  525.    UZipFilesCreate uzipfilescreate=UZipFilesCreate.UZipFilesInstance();  
  526.   
  527.    uzipfilescreate.ZipFileName=this.File1.PostedFile.FileName.Trim();  
  528.   
  529.    uzipfilescreate.filesCreatePath=Server.MapPath("");  
  530.   
  531.    uzipfilescreate.UZipCreateFiles();  
  532.   
  533.   }  

软件工程阅读排行

最新文章