Sets the specified access to the specified file or directory, replacing the existing state of the permission.
- access
- A bitwise combination of the System.Security.Permissions.FileIOPermissionAccess values.
- path
- The absolute path of the file or directory.
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.
code reference: System.Security.Permissions.FileIOPermission#12
This access will not be overwritten by the following code because the access types are not the same.
code reference: System.Security.Permissions.FileIOPermission#13