Sets the specified access to the specified files and directories, replacing the current state for the specified access with the new set of paths.
- access
- A bitwise combination of the System.Security.Permissions.FileIOPermissionAccess values.
- pathList
- An array containing the absolute paths of the files and directories.
The previous state of the current permission for the specified access type is overwritten. The following code sets the access for C:\temp to FileIOPermissionAccess.Read.
This access will not be overwritten by the following code because the access types are not the same.
code reference: System.Security.Permissions.FileIOPermission#15