IFileSystemStructureLinkInfo
Namespace: TagBites.IO
Assembly: TagBites.IO.dll
Represents information about a file/directory.
public abstract interface IFileSystemStructureLinkInfo
Properties
CreationTime
Gets the creation time of the current file/directory.
public DateTime? CreationTime { get; }
Result Type: DateTime?<DateTime>
Exists
Gets a value indicating whether the file/directory exists.
public bool Exists { get; }
Result Type: bool
FullName
Gets the full path of the directory or file. <returns>A System.String containing the full path.</returns>
public string FullName { get; }
Result Type: string
IsDirectory
Gets a value indicating whether it is directory information.
public bool IsDirectory { get; }
Result Type: bool
IsHidden
Gets a value indicating whether the file/directory is hidden.
public bool IsHidden { get; }
Result Type: bool
IsReadOnly
Gets a value indicating whether the file/directory is read only.
public bool IsReadOnly { get; }
Result Type: bool
LastWriteTime
Gets the time when the current file/directory was last modified.
public DateTime? LastWriteTime { get; }