Created
November 17, 2012 02:48
-
-
Save jaredjenkins/4092851 to your computer and use it in GitHub Desktop.
FilePermissionsFlags
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Flags] | |
public enum FilePermissions : uint | |
{ | |
None = 1, | |
Read = 2, | |
Write = 4, | |
ReadWrite = Read | Write, | |
Delete = 8, | |
Full = Read | Write | Delete | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment