blob: 73f65fa01191e3903f54ca92f3eb4a896e5af698 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// 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;
/// <summary>
/// Object representing a zip file on disk; provides access to
/// file-based operations on the zip file.
/// </summary>
/// <remarks>
/// Generally, the methods on this class are much easier to use than the
/// stream-based interfaces provided by the <see cref="ZipEngine"/> class.
/// </remarks>
[Serializable]
public class ZipInfo : ArchiveInfo
{
/// <summary>
/// Creates a new CabinetInfo object representing a zip file in a specified path.
/// </summary>
/// <param name="path">The path to the zip file. When creating a zip file, this file does not
/// necessarily exist yet.</param>
public ZipInfo(string path)
: base(path)
{
}
/// <summary>
/// Initializes a new instance of the CabinetInfo class with serialized data.
/// </summary>
/// <param name="info">The SerializationInfo that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The StreamingContext that contains contextual information about the source or destination.</param>
protected ZipInfo(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
/// <summary>
/// Creates a compression engine that does the low-level work for
/// this object.
/// </summary>
/// <returns>A new <see cref="ZipEngine"/> instance.</returns>
/// <remarks>
/// Each instance will be <see cref="CompressionEngine.Dispose()"/>d
/// immediately after use.
/// </remarks>
protected override CompressionEngine CreateCompressionEngine()
{
return new ZipEngine();
}
/// <summary>
/// Gets information about the files contained in the archive.
/// </summary>
/// <returns>A list of <see cref="ZipFileInfo"/> objects, each
/// containing information about a file in the archive.</returns>
public new IList<ZipFileInfo> GetFiles()
{
IList<ArchiveFileInfo> files = base.GetFiles();
List<ZipFileInfo> zipFiles = new List<ZipFileInfo>(files.Count);
foreach (ZipFileInfo zipFile in files) zipFiles.Add(zipFile);
return zipFiles.AsReadOnly();
}
/// <summary>
/// Gets information about the certain files contained in the archive file.
/// </summary>
/// <param name="searchPattern">The search string, such as
/// "*.txt".</param>
/// <returns>A list of <see cref="ZipFileInfo"/> objects, each containing
/// information about a file in the archive.</returns>
public new IList<ZipFileInfo> GetFiles(string searchPattern)
{
IList<ArchiveFileInfo> files = base.GetFiles(searchPattern);
List<ZipFileInfo> zipFiles = new List<ZipFileInfo>(files.Count);
foreach (ZipFileInfo zipFile in files) zipFiles.Add(zipFile);
return zipFiles.AsReadOnly();
}
}
}
|