Skip to content
Auto
Products

IFileSystemLinkMetadata

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

Represents a metadata of file system link.

public interface IFileSystemLinkMetadata

Gets nullable boolean a value indicating whether the file/directory is hidden, or returns null if no value is set.

public virtual bool? IsHidden { get; set; }

bool?

true if the file/directory is hidden; otherwise, false. If no value is set, returns a null reference.

Gets nullable boolean a value indicating whether the file/directory is read only, or returns null if no value is set.

public virtual bool? IsReadOnly { get; set; }

bool?

true if the file/directory is read only; otherwise, false. If no value is set, returns a null reference

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

public virtual DateTime? LastWriteTime { get; set; }

DateTime?

The time the file/directory was last modified.