首页 > 编程 > C# > 正文

C#实现Zip压缩目录中所有文件的方法

2019-10-29 21:41:02
字体:
来源:转载
供稿:网友

这篇文章主要介绍了C#实现Zip压缩目录中所有文件的方法,涉及C#针对文件的读写与zip压缩相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了C#实现Zip压缩目录中所有文件的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. using System; 
  2. using System.IO; 
  3. using System.Collections; 
  4. using System.IO.Compression; 
  5. using System.Collections.Generic; 
  6. class FolderZip 
  7. private const long BUFFER_SIZE = 20480; 
  8. static void main(string[] args) 
  9. string sourcepath=@"C:/tmp"
  10. Queue<FileSystemInfo> Folders = new Queue<FileSystemInfo>(new DirectoryInfo(sourcepath).GetFileSystemInfos()); 
  11. string copytopath = @"D:/temp"
  12. copytopath = (copytopath.LastIndexOf(Path.DirectorySeparatorChar) == copytopath.Length - 1) ? copytopath : copytopath+Path.DirectorySeparatorChar + Path.GetFileName(sourcepath); 
  13. Directory.CreateDirectory(copytopath); 
  14. while (Folders.Count > 0) 
  15. FileSystemInfo atom = Folders.Dequeue(); 
  16. FileInfo sourcefile = atom as FileInfo; 
  17. if (sourcefile == null
  18. DirectoryInfo directory = atom as DirectoryInfo; 
  19. Directory.CreateDirectory(directory.FullName.Replace(sourcepath,copytopath)); 
  20. foreach (FileSystemInfo nextatom in directory.GetFileSystemInfos()) 
  21. Folders.Enqueue(nextatom); 
  22. else 
  23. string sourcefilename = sourcefile.FullName; 
  24. string zipfilename = sourcefile.FullName.Replace(sourcepath,copytopath) + ".zip"
  25. if (!File.Exists(zipfilename)) 
  26. FileStream sourceStream = null
  27. FileStream destinationStream = null
  28. GZipStream compressedStream = null
  29. try 
  30. // Read the bytes from the source file into a byte array 
  31. sourceStream = new FileStream(sourcefilename, FileMode.Open, FileAccess.Read, FileShare.Read); 
  32. // Open the FileStream to write to 
  33. destinationStream = new FileStream(zipfilename, FileMode.OpenOrCreate, FileAccess.Write); 
  34. // Create a compression stream pointing to the destiantion stream 
  35. compressedStream = new DeflateStream(destinationStream, CompressionMode.Compress, true); 
  36. long bufferSize = sourceStream.Length < BUFFER_SIZE ? sourceStream.Length : BUFFER_SIZE; 
  37. byte[] buffer = new byte[bufferSize]; 
  38. int bytesRead = 0; 
  39. long bytesWritten = 0; 
  40. while ((bytesRead = sourceStream.Read(buffer, 0, buffer.Length)) != 0) 
  41. compressedStream.Write(buffer, 0, bytesRead); 
  42. bytesWritten += bufferSize; 
  43. catch (ApplicationException) 
  44. continue
  45. finally 
  46. // Make sure we allways close all streams 
  47. if (sourceStream != null) sourceStream.Close(); 
  48. if (compressedStream != null) compressedStream.Close(); 
  49. if (destinationStream != null) destinationStream.Close(); 

希望本文所述对大家的C#程序设计有所帮助。

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