Class WimEntry
Namespace: Aspose.Zip.Wim
Assembly: Aspose.Zip.dll (25.2.0)
Represents single file or directory within wim image.
public abstract class WimEntry
Inheritance
Derived
WimDirectoryEntry, WimFileEntry
Inherited Members
object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Properties
AlternateDataStreams
Gets the names of the alternate data streams for a file or directory.
public string[] AlternateDataStreams { get; }
Property Value
string[]
Archive
Gets the archive the entry belongs to.
public WimArchive Archive { get; }
Property Value
ChangeTime
Gets the last time the file or directory was changed.
public DateTime ChangeTime { get; }
Property Value
CreationTime
Gets the creation time of the file or directory.
public DateTime CreationTime { get; }
Property Value
FileAttributes
Gets the file or directory attributes.
public FileAttributes FileAttributes { get; }
Property Value
FullPath
Gets full path of the entry within image.
public string FullPath { get; }
Property Value
HardLink
Gets the hardlink id of the file or directory.
public long HardLink { get; }
Property Value
HasHardLinks
Gets whether the file or directory is known by other names.
public bool HasHardLinks { get; }
Property Value
Image
Gets the image the entry belongs to.
public WimImage Image { get; }
Property Value
IsDirectory
Gets a value indicating whether the entry represents directory.
public bool IsDirectory { get; }
Property Value
LastAccessTime
Gets the last access time of the file or directory.
public DateTime LastAccessTime { get; }
Property Value
LastWriteTime
Gets the modification time of the file or directory.
[Obsolete("This property will be removed in a future release. Please use ModificationTime instead.")]
public DateTime LastWriteTime { get; }
Property Value
ModificationTime
Gets the modification time of the file or directory.
public DateTime ModificationTime { get; }
Property Value
Name
Gets name of the entry within image.
public string Name { get; }
Property Value
Parent
Gets the parent directory the entry belongs to.
public WimDirectoryEntry Parent { get; }
Property Value
ShortName
Gets short name of the entry within image.
public string ShortName { get; }
Property Value
Methods
ToString()
public override string ToString()