blob: 969dcbef0a2fb51a459cd215d5d0d3d9225bed0b (
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.Cab
{
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
/// <summary>
/// Object representing a cabinet file on disk; provides access to
/// file-based operations on the cabinet file.
/// </summary>
/// <remarks>
/// Generally, the methods on this class are much easier to use than the
/// stream-based interfaces provided by the <see cref="CabEngine"/> class.
/// </remarks>
[Serializable]
public class CabInfo : ArchiveInfo
{
/// <summary>
/// Creates a new CabinetInfo object representing a cabinet file in a specified path.
/// </summary>
/// <param name="path">The path to the cabinet file. When creating a cabinet file, this file does not
/// necessarily exist yet.</param>
public CabInfo(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 CabInfo(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="CabEngine"/> instance.</returns>
/// <remarks>
/// Each instance will be <see cref="CompressionEngine.Dispose()"/>d
/// immediately after use.
/// </remarks>
protected override CompressionEngine CreateCompressionEngine()
{
return new CabEngine();
}
/// <summary>
/// Gets information about the files contained in the archive.
/// </summary>
/// <returns>A list of <see cref="CabFileInfo"/> objects, each
/// containing information about a file in the archive.</returns>
public new IList<CabFileInfo> GetFiles()
{
IList<ArchiveFileInfo> files = base.GetFiles();
List<CabFileInfo> cabFiles = new List<CabFileInfo>(files.Count);
foreach (CabFileInfo cabFile in files) cabFiles.Add(cabFile);
return cabFiles.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="CabFileInfo"/> objects, each containing
/// information about a file in the archive.</returns>
public new IList<CabFileInfo> GetFiles(string searchPattern)
{
IList<ArchiveFileInfo> files = base.GetFiles(searchPattern);
List<CabFileInfo> cabFiles = new List<CabFileInfo>(files.Count);
foreach (CabFileInfo cabFile in files) cabFiles.Add(cabFile);
return cabFiles.AsReadOnly();
}
}
}
|