DirectoryGetAccessControl Method (String, AccessControlSections) |
Gets a
DirectorySecurity object that encapsulates the specified type of access control list (ACL) entries for a particular directory.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static DirectorySecurity GetAccessControl(
string path,
AccessControlSections includeSections
)
Public Shared Function GetAccessControl (
path As String,
includeSections As AccessControlSections
) As DirectorySecurity
public:
static DirectorySecurity^ GetAccessControl(
String^ path,
AccessControlSections includeSections
)
static member GetAccessControl :
path : string *
includeSections : AccessControlSections -> DirectorySecurity
Parameters
- path
- Type: SystemString
The path to a directory containing a DirectorySecurity object that describes the directory'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.
Return Value
Type:
DirectorySecurityA
DirectorySecurity object that encapsulates the access control rules for the directory described by the
path parameter.
See Also