/src/CleanZip.Core/ZipArchive.cs

https://bitbucket.org/jens13/cleanzip · C# · 34 lines · 24 code · 6 blank · 4 comment · 0 complexity · c1e4864a89e0ea13f01288c575cf07c6 MD5 · raw file

  1. // Copyright Jens Granlund 2012.
  2. // Distributed under the New BSD License.
  3. // (See accompanying file notice.txt or at
  4. // http://www.opensource.org/licenses/bsd-license.php)
  5. using CleanZip.Compression;
  6. namespace CleanZip
  7. {
  8. public sealed class ZipArchive : IArchive
  9. {
  10. private readonly ZipFile _zipFile;
  11. public ZipArchive(ZipFile zipFile)
  12. {
  13. _zipFile = zipFile;
  14. }
  15. public void Dispose()
  16. {
  17. _zipFile.Dispose();
  18. }
  19. public void Add(IFile file)
  20. {
  21. _zipFile.Add(file.FileName, file.EntryName, CompressionType.Deflate);
  22. }
  23. public void Close()
  24. {
  25. _zipFile.Close();
  26. }
  27. }
  28. }