Skip to content

Instantly share code, notes, and snippets.

@jaredjenkins
Created November 17, 2012 02:48
Show Gist options
  • Save jaredjenkins/4092851 to your computer and use it in GitHub Desktop.
Save jaredjenkins/4092851 to your computer and use it in GitHub Desktop.
FilePermissionsFlags
[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