FileGetAccessControl Method (String, AccessControlSections, PathFormat) |
[AlphaFS] Gets a
FileSecurity object that encapsulates the access control list (ACL) entries for a specified file.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static FileSecurity GetAccessControl(
string path,
AccessControlSections includeSections,
PathFormat pathFormat
)
Public Shared Function GetAccessControl (
path As String,
includeSections As AccessControlSections,
pathFormat As PathFormat
) As FileSecurity
public:
static FileSecurity^ GetAccessControl(
String^ path,
AccessControlSections includeSections,
PathFormat pathFormat
)
static member GetAccessControl :
path : string *
includeSections : AccessControlSections *
pathFormat : PathFormat -> FileSecurity
Parameters
- path
- Type: SystemString
The path to a file containing a FileSecurity object that describes the file's access control list (ACL) information.
- includeSections
- Type: System.Security.AccessControlAccessControlSections
One (or more) of the AccessControlSections values that specifies the type of access control list (ACL) information to
receive.
- pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Return Value
Type:
FileSecurity
A
FileSecurity object that encapsulates the access control rules for the file described by the
path parameter.
See Also