ICSharpCode.SharpZipLib生成tar、tar.gz

来源:互联网 发布:心蓝抢票软件下载 编辑:程序博客网 时间:2024/05/21 10:34

源码地址:http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx

 

调用方法:

[csharp] view plaincopy
  1. /// <summary>  
  2. /// 生成 ***.tar.gz 文件  
  3. /// </summary>  
  4. /// <param name="strBasePath">文件基目录(源文件、生成文件所在目录)</param>  
  5. /// <param name="strSourceFolderName">待压缩的源文件夹名</param>  
  6. public bool CreatTarGzArchive(string strBasePath, string strSourceFolderName)  
  7. {  
  8.     if (string.IsNullOrEmpty(strBasePath)  
  9.         || string.IsNullOrEmpty(strSourceFolderName)  
  10.         || !System.IO.Directory.Exists(strBasePath)  
  11.         || !System.IO.Directory.Exists(Path.Combine(strBasePath, strSourceFolderName)))  
  12.     {  
  13.         return false;  
  14.     }  
  15.   
  16.     Environment.CurrentDirectory = strBasePath;  
  17.     string strSourceFolderAllPath = Path.Combine(strBasePath, strSourceFolderName);  
  18.     string strOupFileAllPath = Path.Combine(strBasePath, strSourceFolderName + ".tar.gz");  
  19.   
  20.     Stream outTmpStream = new FileStream(strOupFileAllPath, FileMode.OpenOrCreate);  
  21.   
  22.     //注意此处源文件大小大于4096KB  
  23.     Stream outStream = new GZipOutputStream(outTmpStream);  
  24.     TarArchive archive = TarArchive.CreateOutputTarArchive(outStream, TarBuffer.DefaultBlockFactor);  
  25.     TarEntry entry = TarEntry.CreateEntryFromFile(strSourceFolderAllPath);  
  26.     archive.WriteEntry(entry, true);  
  27.   
  28.     if (archive != null)  
  29.     {  
  30.         archive.Close();  
  31.     }  
  32.   
  33.     outTmpStream.Close();  
  34.     outStream.Close();  
  35.   
  36.     return true;  
  37. }  

 

Note:

在linux下使用gzip命令解压生成的tar.gz包会报如下错误:

gzip: dfis_bp.tar.gz: decompression OK, trailing garbage ignored

 

报这样的错通常是因为tar.gz文件的尾部有一串0x00或者0xff,这是由于很多场合下压缩算法都会在压缩完成后补充一些字节以对齐数据块。gzip在正确解压完tar.gz的内容后开始解压这样的全零填充字节就会报这样的错,并不会影响使用。


用安静模式 (gzip -q) 可以消除这些警报。


 

[csharp] view plaincopy
  1. /// <summary>  
  2. /// 生成 ***.tar 文件  
  3. /// </summary>  
  4. /// <param name="strBasePath">文件基目录(源文件、生成文件所在目录)</param>  
  5. /// <param name="strSourceFolderName">待压缩的源文件夹名</param>  
  6. public bool CreatTarArchive(string strBasePath, string strSourceFolderName)  
  7. {  
  8.     if (string.IsNullOrEmpty(strBasePath)  
  9.         || string.IsNullOrEmpty(strSourceFolderName)  
  10.         || !System.IO.Directory.Exists(strBasePath)  
  11.         || !System.IO.Directory.Exists(Path.Combine(strBasePath, strSourceFolderName)))  
  12.     {  
  13.         return false;  
  14.     }  
  15.   
  16.     Environment.CurrentDirectory = strBasePath;  
  17.     string strSourceFolderAllPath = Path.Combine(strBasePath, strSourceFolderName);  
  18.     string strOupFileAllPath = Path.Combine(strBasePath, strSourceFolderName + ".tar");  
  19.   
  20.     Stream outStream = new FileStream(strOupFileAllPath, FileMode.OpenOrCreate);  
  21.   
  22.     TarArchive archive = TarArchive.CreateOutputTarArchive(outStream, TarBuffer.DefaultBlockFactor);  
  23.     TarEntry entry = TarEntry.CreateEntryFromFile(strSourceFolderAllPath);  
  24.     archive.WriteEntry(entry, true);  
  25.   
  26.     if (archive != null)  
  27.     {  
  28.         archive.Close();  
  29.     }  
  30.   
  31.     outStream.Close();  
  32.   
  33.     return true;  
  34. }  

 

 

[csharp] view plaincopy
  1. /// <summary>  
  2. /// tar包解压  
  3. /// </summary>  
  4. /// <param name="strFilePath">tar包路径</param>  
  5. /// <param name="strUnpackDir">解压到的目录</param>  
  6. /// <returns></returns>  
  7. public static bool UnpackTarFiles(string strFilePath, string strUnpackDir)  
  8. {  
  9.     try  
  10.     {  
  11.         if (!File.Exists(strFilePath))  
  12.         {  
  13.             return false;  
  14.         }  
  15.   
  16.         strUnpackDir = strUnpackDir.Replace("/""\\");  
  17.         if (!strUnpackDir.EndsWith("\\"))  
  18.         {  
  19.             strUnpackDir += "\\";  
  20.         }  
  21.   
  22.         if (!Directory.Exists(strUnpackDir))  
  23.         {  
  24.             Directory.CreateDirectory(strUnpackDir);  
  25.         }  
  26.   
  27.         FileStream fr = new FileStream(strFilePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);  
  28.         DhcEc.SharpZipLib.Tar.TarInputStream s = new DhcEc.SharpZipLib.Tar.TarInputStream(fr);  
  29.         DhcEc.SharpZipLib.Tar.TarEntry theEntry;  
  30.         while ((theEntry = s.GetNextEntry()) != null)  
  31.         {  
  32.             string directoryName = Path.GetDirectoryName(theEntry.Name);  
  33.             string fileName = Path.GetFileName(theEntry.Name);  
  34.   
  35.             if (directoryName != String.Empty)  
  36.                 Directory.CreateDirectory(strUnpackDir + directoryName);  
  37.   
  38.             if (fileName != String.Empty)  
  39.             {  
  40.                 FileStream streamWriter = File.Create(strUnpackDir + theEntry.Name);  
  41.   
  42.                 int size = 2048;  
  43.                 byte[] data = new byte[2048];  
  44.                 while (true)  
  45.                 {  
  46.                     size = s.Read(data, 0, data.Length);  
  47.                     if (size > 0)  
  48.                     {  
  49.                         streamWriter.Write(data, 0, size);  
  50.                     }  
  51.                     else  
  52.                     {  
  53.                         break;  
  54.                     }  
  55.                 }  
  56.   
  57.                 streamWriter.Close();  
  58.             }  
  59.         }  
  60.         s.Close();  
  61.         fr.Close();  
  62.   
  63.         return true;  
  64.     }  
  65.     catch (Exception)  
  66.     {  
  67.         return false;  
  68.     }  
  69. }   



 

[csharp] view plaincopy
  1. /// <summary>  
  2. /// zip压缩文件  
  3. /// </summary>  
  4. /// <param name="filename">filename生成的文件的名称,如:C\123\123.zip</param>  
  5. /// <param name="directory">directory要压缩的文件夹路径</param>  
  6. /// <returns></returns>  
  7. public static bool PackFiles(string filename, string directory)  
  8. {  
  9.     try  
  10.     {  
  11.         directory = directory.Replace("/""\\");  
  12.   
  13.         if (!directory.EndsWith("\\"))  
  14.             directory += "\\";  
  15.         if (!Directory.Exists(directory))  
  16.         {  
  17.             Directory.CreateDirectory(directory);  
  18.         }  
  19.         if (File.Exists(filename))  
  20.         {  
  21.             File.Delete(filename);  
  22.         }  
  23.   
  24.         FastZip fz = new FastZip();  
  25.         fz.CreateEmptyDirectories = true;  
  26.         fz.CreateZip(filename, directory, true"");  
  27.   
  28.         return true;  
  29.     }  
  30.     catch (Exception)  
  31.     {  
  32.         return false;  
  33.     }  
  34. }  


 

[csharp] view plaincopy
  1. /// <summary>  
  2. /// zip解压文件  
  3. /// </summary>  
  4. /// <param name="file">压缩文件的名称,如:C:\123\123.zip</param>  
  5. /// <param name="dir">dir要解压的文件夹路径</param>  
  6. /// <returns></returns>  
  7. public static bool UnpackFiles(string file, string dir)  
  8. {  
  9.     try  
  10.     {  
  11.         if (!File.Exists(file))  
  12.             return false;  
  13.   
  14.         dir = dir.Replace("/""\\");  
  15.         if (!dir.EndsWith("\\"))  
  16.             dir += "\\";  
  17.   
  18.         if (!Directory.Exists(dir))  
  19.             Directory.CreateDirectory(dir);  
  20.   
  21.         FileStream fr = new FileStream(strFilePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);  
  22.         DhcEc.SharpZipLib.Zip.ZipInputStream s = new DhcEc.SharpZipLib.Zip.ZipInputStream(fr);  
  23.         DhcEc.SharpZipLib.Zip.ZipEntry theEntry;  
  24.         while ((theEntry = s.GetNextEntry()) != null)  
  25.         {  
  26.             string directoryName = Path.GetDirectoryName(theEntry.Name);  
  27.             string fileName = Path.GetFileName(theEntry.Name);  
  28.   
  29.             if (directoryName != String.Empty)  
  30.                 Directory.CreateDirectory(dir + directoryName);  
  31.   
  32.             if (fileName != String.Empty)  
  33.             {  
  34.                 FileStream streamWriter = File.Create(dir + theEntry.Name);  
  35.   
  36.                 int size = 2048;  
  37.                 byte[] data = new byte[2048];  
  38.                 while (true)  
  39.                 {  
  40.                     size = s.Read(data, 0, data.Length);  
  41.                     if (size > 0)  
  42.                     {  
  43.                         streamWriter.Write(data, 0, size);  
  44.                     }  
  45.                     else  
  46.                     {  
  47.                         break;  
  48.                     }  
  49.                 }  
  50.   
  51.                 streamWriter.Close();  
  52.             }  
  53.         }  
  54.         s.Close();  
  55.         fr.Close();  
  56.   
  57.         return true;  
  58.     }  
  59.     catch (Exception)  
  60.     {  
  61.         return false;  
  62.     }  
  63. }  
0 0
原创粉丝点击