Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
FileSystemRights.cs
Go to the documentation of this file.
2
3[Flags]
4public enum FileSystemRights
5{
6 ReadData = 1,
8 WriteData = 2,
9 CreateFiles = 2,
10 AppendData = 4,
14 ExecuteFile = 0x20,
15 Traverse = 0x20,
17 ReadAttributes = 0x80,
18 WriteAttributes = 0x100,
19 Delete = 0x10000,
20 ReadPermissions = 0x20000,
21 ChangePermissions = 0x40000,
22 TakeOwnership = 0x80000,
23 Synchronize = 0x100000,
24 FullControl = 0x1F01FF,
25 Read = 0x20089,
26 ReadAndExecute = 0x200A9,
27 Write = 0x116,
28 Modify = 0x301BF
29}