Class XarEntry
Class XarEntry
Namespace: Aspose.Zip.Xar
Assembly: Aspose.Zip.dll (25.2.0)
Represents single entry within xar archive.
public abstract class XarEntry
Inheritance
Derived
XarDirectoryEntry, XarFileEntry
Inherited Members
object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Properties
CreationTime
Gets the creation time of the file or directory.
public DateTime CreationTime { get; }
Property Value
FullPath
Gets full path of the entry within archive.
public string FullPath { 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 archive.
public string Name { get; }
Property Value
Parent
Gets the parent directory the entry belongs to.
public XarDirectoryEntry Parent { get; }
Property Value
Methods
ToString()
public override string ToString()