Table of Contents

Enum UnixFilePermissions

Namespace
CENTREL.XIA.Configuration.Types
Assembly
CENTREL.XIA.Configuration.Types.dll

Represents the permissions.

[Flags]
public enum UnixFilePermissions

Fields

GroupExecute = 8

The owning Group users are permitted to execute the file.

GroupRead = 32

The owning Group users are permitted to read the file.

GroupWrite = 16

The owning Group users are permitted to write to the file.

OthersExecute = 1

Others are permitted to execute the file.

OthersRead = 4

Others are permitted to read the file.

OthersWrite = 2

Others are permitted to write to the file.

OwnerExecute = 64

The owning user is permitted to execute the file.

OwnerRead = 256

The owning user is permitted to read the file.

OwnerWrite = 128

The owning user is permitted to write to the file.

SetGid = 1024

Set GID bit.

SetUid = 2048

Set UID.

Sticky = 512

Sticky.