Skip to content

Instantly share code, notes, and snippets.

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