Enum UnixFilePermissions
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the permissions.
[Flags]
public enum UnixFilePermissions
Fields
GroupExecute = 8The owning Group users are permitted to execute the file.
GroupRead = 32The owning Group users are permitted to read the file.
GroupWrite = 16The owning Group users are permitted to write to the file.
OthersExecute = 1Others are permitted to execute the file.
OthersRead = 4Others are permitted to read the file.
OthersWrite = 2Others are permitted to write to the file.
OwnerExecute = 64The owning user is permitted to execute the file.
OwnerRead = 256The owning user is permitted to read the file.
OwnerWrite = 128The owning user is permitted to write to the file.
SetGid = 1024Set GID bit.
SetUid = 2048Set UID.
Sticky = 512Sticky.