WimFileEntry

WimFileEntry class

Represents single file within wim archive.

public sealed class WimFileEntry : WimEntry, IArchiveFileEntry

Properties

NameDescription
AlternateDataStreams { get; }Gets the names of the alternate data streams for a file or directory.
Archive { get; }Gets the archive the entry belongs to.
ChangeTime { get; }Gets the last time the file or directory was changed.
CreationTime { get; }Gets the creation time of the file or directory.
FileAttributes { get; }Gets the file or directory attributes.
FullPath { get; }Gets full path of the entry within image.
HardLink { get; }Gets the hardlink id of the file or directory.
HasHardLinks { get; }Gets whether the file or directory is known by other names.
Image { get; }Gets the image the entry belongs to.
IsDirectory { get; }Gets a value indicating whether the entry represents directory.
LastAccessTime { get; }Gets the last access time of the file or directory.
LastWriteTime { get; }Gets the modification time of the file or directory.
Length { get; }Gets the length of the entry in bytes.
Name { get; }Gets name of the entry within image.
Parent { get; }Gets the parent directory the entry belongs to.
ShortName { get; }Gets short name of the entry within image.

Methods

NameDescription
Extract(Stream)Extracts the entry to the stream provided.
Extract(string)Extracts the entry to the filesystem by the path provided.
Open()Opens the entry for extraction and provides a stream with entry content.
override ToString()

See Also