mscorlib(4.0.0.0) API with additions
FileSystemRights.cs
2 {
4  [Flags]
5  public enum FileSystemRights
6  {
8  ReadData = 0x1,
10  ListDirectory = 0x1,
12  WriteData = 0x2,
14  CreateFiles = 0x2,
16  AppendData = 0x4,
18  CreateDirectories = 0x4,
20  ReadExtendedAttributes = 0x8,
22  WriteExtendedAttributes = 0x10,
24  ExecuteFile = 0x20,
26  Traverse = 0x20,
30  ReadAttributes = 0x80,
32  WriteAttributes = 0x100,
34  Delete = 0x10000,
36  ReadPermissions = 0x20000,
38  ChangePermissions = 0x40000,
40  TakeOwnership = 0x80000,
42  Synchronize = 0x100000,
44  FullControl = 0x1F01FF,
46  Read = 0x20089,
48  ReadAndExecute = 0x200A9,
50  Write = 0x116,
52  Modify = 0x301BF
53  }
54 }
FileSystemRights
Defines the access rights to use when creating access and audit rules.
Specifies the right to open and copy folders or files as read-only, and to run application files....
Specifies the right to run an application file.
Specifies the right to list the contents of a folder and to run applications contained within that fo...
The right to set or reset the signaled state of a named event.
The DEL (DELETE) key.
Specifies the right to delete a folder and any files contained within that folder.
Specifies the right to append data to the end of a file.