Skip to content
Auto
Products

IFileSystemStructureLinkInfo

Namespace: TagBites.IO
Assembly: TagBites.IO.dll
Product: TagBites.IO v. 2.0.0

Represents information about a file/directory.

public interface IFileSystemStructureLinkInfo

Gets the creation time of the current file/directory.

public virtual DateTime? CreationTime { get; }

DateTime?

The creation date and time of the current IFileSystemStructureLinkInfo object.

Gets a value indicating whether the file/directory exists.

public virtual bool Exists { get; }

bool

true if the file/directory exists; otherwise, false.

Gets the full path of the directory or file.

public virtual string FullName { get; }

string

A String containing the full path.

Gets a value indicating whether it is directory information.

public virtual bool? IsDirectory { get; }

bool?

true if it is directory information; otherwise, false.

Gets a value indicating whether the file/directory is hidden.

public virtual bool IsHidden { get; }

bool

true if the file/directory is hidden; otherwise, false.

Gets a value indicating whether the file/directory is read only.

public virtual bool IsReadOnly { get; }

bool

true if the file/directory is read only; otherwise, false.

Gets the time when the current file/directory was last modified.

public virtual DateTime? LastWriteTime { get; }

DateTime?

The time the current file/directory was last modified.