Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
UnixFileMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before itβs released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the Unix filesystem permissions.
This enumeration supports a bitwise combination of its member values.
This enumeration supports a bitwise combination of its member values.
public enum class UnixFileMode
[System.Flags]
public enum UnixFileMode
[<System.Flags>]
type UnixFileMode =
Public Enum UnixFileMode
- Inheritance
- Attributes
Fields
| Name | Value | Description |
|---|---|---|
| None | 0 | No permissions. |
| OtherExecute | 1 | Execute permission for others. |
| OtherWrite | 2 | Write permission for others. |
| OtherRead | 4 | Read permission for others. |
| GroupExecute | 8 | Execute permission for group. |
| GroupWrite | 16 | Write permission for group. |
| GroupRead | 32 | Read permission for group. |
| UserExecute | 64 | Execute permission for owner. |
| UserWrite | 128 | Write permission for owner. |
| UserRead | 256 | Read permission for owner. |
| StickyBit | 512 | Sticky bit permission. |
| SetGroup | 1024 | Set group permission. |
| SetUser | 2048 | Set user permission. |
Applies to
Feedback
Was this page helpful?
