/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
- // Copyright Jens Granlund 2012.
- // Distributed under the New BSD License.
- // (See accompanying file notice.txt or at
- // http://www.opensource.org/licenses/bsd-license.php)
- using CleanZip.Compression;
- namespace CleanZip
- {
- public sealed class ZipArchive : IArchive
- {
- private readonly ZipFile _zipFile;
- public ZipArchive(ZipFile zipFile)
- {
- _zipFile = zipFile;
- }
- public void Dispose()
- {
- _zipFile.Dispose();
- }
- public void Add(IFile file)
- {
- _zipFile.Add(file.FileName, file.EntryName, CompressionType.Deflate);
- }
- public void Close()
- {
- _zipFile.Close();
- }
- }
- }