// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. namespace WixToolset.Dtf.Compression.Zip { using System; using System.Collections.Generic; using System.Runtime.Serialization; /// /// Object representing a zip file on disk; provides access to /// file-based operations on the zip file. /// /// /// Generally, the methods on this class are much easier to use than the /// stream-based interfaces provided by the class. /// [Serializable] public class ZipInfo : ArchiveInfo { /// /// Creates a new CabinetInfo object representing a zip file in a specified path. /// /// The path to the zip file. When creating a zip file, this file does not /// necessarily exist yet. public ZipInfo(string path) : base(path) { } /// /// Initializes a new instance of the CabinetInfo class with serialized data. /// /// The SerializationInfo that holds the serialized object data about the exception being thrown. /// The StreamingContext that contains contextual information about the source or destination. protected ZipInfo(SerializationInfo info, StreamingContext context) : base(info, context) { } /// /// Creates a compression engine that does the low-level work for /// this object. /// /// A new instance. /// /// Each instance will be d /// immediately after use. /// protected override CompressionEngine CreateCompressionEngine() { return new ZipEngine(); } /// /// Gets information about the files contained in the archive. /// /// A list of objects, each /// containing information about a file in the archive. public new IList GetFiles() { IList files = base.GetFiles(); List zipFiles = new List(files.Count); foreach (ZipFileInfo zipFile in files) zipFiles.Add(zipFile); return zipFiles.AsReadOnly(); } /// /// Gets information about the certain files contained in the archive file. /// /// The search string, such as /// "*.txt". /// A list of objects, each containing /// information about a file in the archive. public new IList GetFiles(string searchPattern) { IList files = base.GetFiles(searchPattern); List zipFiles = new List(files.Count); foreach (ZipFileInfo zipFile in files) zipFiles.Add(zipFile); return zipFiles.AsReadOnly(); } } }