/ZipUtils.cs

# · C# · 288 lines · 218 code · 29 blank · 41 comment · 32 complexity · 1b4e00798571124d32da641b71079f8e MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.IO;
  6. using ICSharpCode.SharpZipLib.Zip;
  7. using ICSharpCode.SharpZipLib.Checksums;
  8. /// <summary>
  9. ///ZipUtils 的摘要说明
  10. /// </summary>
  11. namespace ZipUtils
  12. {
  13. public class ZipClass
  14. {
  15. /**////
  16. /// 递归压缩文件夹方法
  17. ///
  18. ///
  19. ///
  20. ///
  21. private static bool ZipFileDictory(string FolderToZip, ZipOutputStream s, string ParentFolderName)
  22. {
  23. bool res = true;
  24. string[] folders, filenames;
  25. ZipEntry entry = null;
  26. FileStream fs = null;
  27. Crc32 crc = new Crc32();
  28. try
  29. {
  30. //创建当前文件夹
  31. entry = new ZipEntry(Path.Combine(ParentFolderName, Path.GetFileName(FolderToZip) + "/")); //加上 “/” 才会当成是文件夹创建
  32. s.PutNextEntry(entry);
  33. s.Flush();
  34. //先压缩文件,再递归压缩文件夹
  35. filenames = Directory.GetFiles(FolderToZip);
  36. foreach (string file in filenames)
  37. {
  38. //打开压缩文件
  39. fs = File.OpenRead(file);
  40. byte[] buffer = new byte[fs.Length];
  41. fs.Read(buffer, 0, buffer.Length);
  42. entry = new ZipEntry(Path.Combine(ParentFolderName, Path.GetFileName(FolderToZip) + "/" + Path.GetFileName(file)));
  43. entry.DateTime = DateTime.Now;
  44. entry.Size = fs.Length;
  45. fs.Close();
  46. crc.Reset();
  47. crc.Update(buffer);
  48. entry.Crc = crc.Value;
  49. s.PutNextEntry(entry);
  50. s.Write(buffer, 0, buffer.Length);
  51. }
  52. }
  53. catch
  54. {
  55. res = false;
  56. }
  57. finally
  58. {
  59. if (fs != null)
  60. {
  61. fs.Close();
  62. fs = null;
  63. }
  64. if (entry != null)
  65. {
  66. entry = null;
  67. }
  68. GC.Collect();
  69. GC.Collect(1);
  70. }
  71. folders = Directory.GetDirectories(FolderToZip);
  72. foreach (string folder in folders)
  73. {
  74. if (!ZipFileDictory(folder, s, Path.Combine(ParentFolderName, Path.GetFileName(FolderToZip))))
  75. {
  76. return false;
  77. }
  78. }
  79. return res;
  80. }
  81. /**////
  82. /// 压缩目录
  83. ///
  84. /// 待压缩的文件夹,全路径格式
  85. /// 压缩后的文件名,全路径格式
  86. ///
  87. private static bool ZipFileDictory(string FolderToZip, string ZipedFile, String Password)
  88. {
  89. bool res;
  90. if (!Directory.Exists(FolderToZip))
  91. {
  92. return false;
  93. }
  94. ZipOutputStream s = new ZipOutputStream(File.Create(ZipedFile));
  95. s.SetLevel(6);
  96. s.Password = Password;
  97. res = ZipFileDictory(FolderToZip, s, "");
  98. s.Finish();
  99. s.Close();
  100. return res;
  101. }
  102. /**////
  103. /// 压缩文件
  104. ///
  105. /// 要进行压缩的文件名
  106. /// 压缩后生成的压缩文件名
  107. ///
  108. private static bool ZipFile(string FileToZip, string ZipedFile, String Password)
  109. {
  110. //如果文件没有找到,则报错
  111. if (!File.Exists(FileToZip))
  112. {
  113. throw new System.IO.FileNotFoundException("指定要压缩的文件: " + FileToZip + " 不存在!");
  114. }
  115. //FileStream fs = null;
  116. FileStream ZipFile = null;
  117. ZipOutputStream ZipStream = null;
  118. ZipEntry ZipEntry = null;
  119. bool res = true;
  120. try
  121. {
  122. ZipFile = File.OpenRead(FileToZip);
  123. byte[] buffer = new byte[ZipFile.Length];
  124. ZipFile.Read(buffer, 0, buffer.Length);
  125. ZipFile.Close();
  126. ZipFile = File.Create(ZipedFile);
  127. ZipStream = new ZipOutputStream(ZipFile);
  128. ZipStream.Password = Password;
  129. ZipEntry = new ZipEntry(Path.GetFileName(FileToZip));
  130. ZipStream.PutNextEntry(ZipEntry);
  131. ZipStream.SetLevel(6);
  132. ZipStream.Write(buffer, 0, buffer.Length);
  133. }
  134. catch
  135. {
  136. res = false;
  137. }
  138. finally
  139. {
  140. if (ZipEntry != null)
  141. {
  142. ZipEntry = null;
  143. }
  144. if (ZipStream != null)
  145. {
  146. ZipStream.Finish();
  147. ZipStream.Close();
  148. }
  149. if (ZipFile != null)
  150. {
  151. ZipFile.Close();
  152. ZipFile = null;
  153. }
  154. GC.Collect();
  155. GC.Collect(1);
  156. }
  157. return res;
  158. }
  159. /**////
  160. /// 压缩文件 和 文件夹
  161. ///
  162. /// 待压缩的文件或文件夹,全路径格式
  163. /// 压缩后生成的压缩文件名,全路径格式
  164. ///
  165. public static bool Zip(String FileToZip, String ZipedFile, String Password)
  166. {
  167. if (Directory.Exists(FileToZip))
  168. {
  169. return ZipFileDictory(FileToZip, ZipedFile, Password);
  170. }
  171. else if (File.Exists(FileToZip))
  172. {
  173. return ZipFile(FileToZip, ZipedFile, Password);
  174. }
  175. else
  176. {
  177. return false;
  178. }
  179. }
  180. }
  181. /**////
  182. /// 解压类
  183. ///
  184. public class UnZipClass
  185. {
  186. /**////
  187. /// 解压功能(解压压缩文件到指定目录)
  188. ///
  189. /// 待解压的文件
  190. /// 指定解压目标目录
  191. public static void UnZip(string FileToUpZip, string ZipedFolder, string Password)
  192. {
  193. if (!File.Exists(FileToUpZip))
  194. {
  195. return;
  196. }
  197. if (!Directory.Exists(ZipedFolder))
  198. {
  199. Directory.CreateDirectory(ZipedFolder);
  200. }
  201. ZipInputStream s = null;
  202. ZipEntry theEntry = null;
  203. string fileName;
  204. FileStream streamWriter = null;
  205. try
  206. {
  207. s = new ZipInputStream(File.OpenRead(FileToUpZip));
  208. s.Password = Password;
  209. while ((theEntry = s.GetNextEntry()) != null)
  210. {
  211. if (theEntry.Name != String.Empty)
  212. {
  213. fileName = Path.Combine(ZipedFolder, theEntry.Name);
  214. /**////判断文件路径是否是文件夹
  215. if (fileName.EndsWith("/") || fileName.EndsWith("\\"))
  216. {
  217. Directory.CreateDirectory(fileName);
  218. continue;
  219. }
  220. streamWriter = File.Create(fileName);
  221. int size = 2048;
  222. byte[] data = new byte[2048];
  223. while (true)
  224. {
  225. size = s.Read(data, 0, data.Length);
  226. if (size > 0)
  227. {
  228. streamWriter.Write(data, 0, size);
  229. }
  230. else
  231. {
  232. break;
  233. }
  234. }
  235. }
  236. }
  237. }
  238. finally
  239. {
  240. if (streamWriter != null)
  241. {
  242. streamWriter.Close();
  243. streamWriter = null;
  244. }
  245. if (theEntry != null)
  246. {
  247. theEntry = null;
  248. }
  249. if (s != null)
  250. {
  251. s.Close();
  252. s = null;
  253. }
  254. GC.Collect();
  255. GC.Collect(1);
  256. }
  257. }
  258. }
  259. }