Enum NtfsFileSystemRights
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the rights that can be assigned with NTFS permissions.
[Flags]
[TypeConverter(typeof(GlobalizedEnumConverter))]
public enum NtfsFileSystemRights
Fields
AccessSystemSecurity = 16777216
The right to get or set the SACL in the object security descriptor.
AppendData = 4
Specifies the right to append data to the end of a file.
ChangePermissions = 262144
Specifies the right to change the security and audit rules associated with a file or folder.
CreateDirectories = 4
Specifies the right to create a folder.
CreateFiles = 2
Specifies the right to create a file.
Delete = 65536
Specifies the right to delete a folder or file.
DeleteSubdirectoriesAndFiles = 64
Specifies the right to delete a folder and any files contained within that folder.
ExecuteFile = 32
Specifies the right to run an application file.
FullControl = DeleteSubdirectoriesAndFiles | Modify | ChangePermissions | TakeOwnership | Synchronize
Specifies the right to exert full control over a folder or file, and to modify access control and audit rules. This value represents the right to do anything with a file and is the combination of all rights in this enumeration.
ListDirectory = 1
Specifies the right to read the contents of a directory.
Modify = Write | Delete | ReadAndExecute
Specifies the right to read, write, list folder contents, delete folders and files, and run application files. This right includes the System.Security.AccessControl.FileSystemRights.ReadAndExecute right, the System.Security.AccessControl.FileSystemRights.Write right, and the System.Security.AccessControl.FileSystemRights.Delete right.
None = 0
The rights are none.
Read = ListDirectory | ReadExtendedAttributes | ReadAttributes | ReadPermissions
Specifies the right to open and copy folders or files as read-only. This right includes the System.Security.AccessControl.FileSystemRights.ReadData right, System.Security.AccessControl.FileSystemRights.ReadExtendedAttributes right, System.Security.AccessControl.FileSystemRights.ReadAttributes right, and System.Security.AccessControl.FileSystemRights.ReadPermissions right.
ReadAndExecute = ExecuteFile | Read
Specifies the right to open and copy folders or files as read-only, and to run application files. This right includes the System.Security.AccessControl.FileSystemRights.Read right and the System.Security.AccessControl.FileSystemRights.ExecuteFile right.
ReadAttributes = 128
Specifies the right to open and copy file system attributes from a folder or file. For example, this value specifies the right to view the file creation or modified date. This does not include the right to read data, extended file system attributes, or access and audit rules.
ReadData = 1
Specifies the right to open and copy a file or folder. This does not include the right to read file system attributes, extended file system attributes, or access and audit rules.
ReadExtendedAttributes = 8
Specifies the right to open and copy extended file system attributes from a folder or file. For example, this value specifies the right to view author and content information. This does not include the right to read data, file system attributes, or access and audit rules.
ReadPermissions = 131072
Specifies the right to open and copy access and audit rules from a folder or file. This does not include the right to read data, file system attributes, and extended file system attributes.
Synchronize = 1048576
Specifies whether the application can wait for a file handle to synchronize with the completion of an I/O operation.
TakeOwnership = 524288
Specifies the right to change the owner of a folder or file. Note that owners of a resource have full access to that resource.
Traverse = 32
Specifies the right to list the contents of a folder and to run applications contained within that folder.
Unknown = -1
The FileSystemRight is unknown, this is the default setting and added over the standard .NET FilSystemRights enum to allow for permissions not defined in the .NET Framework 2.0.
Write = CreateFiles | AppendData | WriteExtendedAttributes | WriteAttributes
Specifies the right to create folders and files, and to add or remove data from files. This right includes the System.Security.AccessControl.FileSystemRights.WriteData right, System.Security.AccessControl.FileSystemRights.AppendData right, System.Security.AccessControl.FileSystemRights.WriteExtendedAttributes right, and System.Security.AccessControl.FileSystemRights.WriteAttributes right.
WriteAttributes = 256
Specifies the right to open and write file system attributes to a folder or file. This does not include the ability to write data, extended attributes, or access and audit rules.
WriteData = 2
Specifies the right to open and write to a file or folder. This does not include the right to open and write file system attributes, extended file system attributes, or access and audit rules.
WriteExtendedAttributes = 16
Specifies the right to open and write extended file system attributes to a folder or file. This does not include the ability to write data, attributes, or access and audit rules.