UnixFileMode 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示 Unix 檔案系統許可權。
此列舉支援其成員值的位元組合。
此列舉支援其成員值的位元組合。
public enum class UnixFileMode
[System.Flags]
public enum UnixFileMode
[<System.Flags>]
type UnixFileMode =
Public Enum UnixFileMode
- 繼承
- 屬性
欄位
GroupExecute | 8 | 執行群組的許可權。 |
GroupRead | 32 | 群組的讀取許可權。 |
GroupWrite | 16 | 群組的寫入許可權。 |
None | 0 | 沒有權限。 |
OtherExecute | 1 | 執行其他人的許可權。 |
OtherRead | 4 | 其他人的讀取許可權。 |
OtherWrite | 2 | 其他人的寫入許可權。 |
SetGroup | 1024 | 設定群組許可權。 |
SetUser | 2048 | 設定用戶權力。 |
StickyBit | 512 | 黏性位許可權。 |
UserExecute | 64 | 執行擁有者的許可權。 |
UserRead | 256 | 擁有者的讀取許可權。 |
UserWrite | 128 | 擁有者的寫入許可權。 |