Table of Contents

Class FileEntryAttributes

Namespace
Tmds.Ssh
Assembly
Tmds.Ssh.dll

Attributes of a filesystem entry.

public sealed class FileEntryAttributes
Inheritance
FileEntryAttributes
Inherited Members

Properties

ExtendedAttributes

Gets or sets extended attributes.

public Dictionary<string, byte[]>? ExtendedAttributes { get; set; }

Property Value

Dictionary<string, byte[]>

FileType

Gets or sets the UnixFileType.

public UnixFileType FileType { get; set; }

Property Value

UnixFileType

Gid

Gets or sets the group ID.

public int Gid { get; set; }

Property Value

int

LastAccessTime

Gets or sets the last access time.

public DateTimeOffset LastAccessTime { get; set; }

Property Value

DateTimeOffset

LastWriteTime

Gets or sets the last write time.

public DateTimeOffset LastWriteTime { get; set; }

Property Value

DateTimeOffset

Length

Gets or sets the file length in bytes.

public long Length { get; set; }

Property Value

long

Permissions

Gets or sets the UnixFilePermissions.

public UnixFilePermissions Permissions { get; set; }

Property Value

UnixFilePermissions

Uid

Gets or sets the user ID.

public int Uid { get; set; }

Property Value

int