Class XarEntry
Class XarEntry
Namespace: Aspose.Zip.Xar
Assembly: Aspose.Zip.dll (25.5.0)
Represents a 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 a full path of the entry within the archive.
public string FullPath { get; }
Property Value
IsDirectory
Gets a value indicating whether the entry represents a 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 the 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()