Created
November 17, 2012 02:07
-
-
Save jaredjenkins/4092649 to your computer and use it in GitHub Desktop.
FilePermissions - Class
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
public static class FilePermissions | |
{ | |
public const int None = 1; | |
public const int Read = 2; | |
public const int Write = 4; | |
public const int ReadWrite = Read | Write; | |
public const int Delete = 8; | |
public const int Full = Read | Write | Delete; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment