Class FileEntryAttributes
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
Gid
Gets or sets the group ID.
public int Gid { get; set; }
Property Value
LastAccessTime
Gets or sets the last access time.
public DateTimeOffset LastAccessTime { get; set; }
Property Value
LastWriteTime
Gets or sets the last write time.
public DateTimeOffset LastWriteTime { get; set; }
Property Value
Length
Gets or sets the file length in bytes.
public long Length { get; set; }
Property Value
Permissions
Gets or sets the UnixFilePermissions.
public UnixFilePermissions Permissions { get; set; }
Property Value
Uid
Gets or sets the user ID.
public int Uid { get; set; }