Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
System.IO Namespace
Directory Class
Directory Methods
 GetAccessControl Method (String, Ac...

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
Directory..::.GetAccessControl Method (String, AccessControlSections)

Gets a DirectorySecurity object that encapsulates the specified type of access control list (ACL) entries for a specified directory.

Namespace:  System.IO
Assembly:  mscorlib (in mscorlib.dll)
Visual Basic (Declaration)
Public Shared Function GetAccessControl ( _
    path As String, _
    includeSections As AccessControlSections _
) As DirectorySecurity
Visual Basic (Usage)
Dim path As String
Dim includeSections As AccessControlSections
Dim returnValue As DirectorySecurity

returnValue = Directory.GetAccessControl(path, _
    includeSections)
C#
public static DirectorySecurity GetAccessControl(
    string path,
    AccessControlSections includeSections
)
Visual C++
public:
static DirectorySecurity^ GetAccessControl(
    String^ path, 
    AccessControlSections includeSections
)
JScript
public static function GetAccessControl(
    path : String, 
    includeSections : AccessControlSections
) : DirectorySecurity

Parameters

path
Type: System..::.String
The path to a directory containing a DirectorySecurity object that describes the file's access control list (ACL) information.
includeSections
Type: System.Security.AccessControl..::.AccessControlSections
One of the AccessControlSections values that specifies the type of access control list (ACL) information to receive.

Return Value

Type: System.Security.AccessControl..::.DirectorySecurity
A DirectorySecurity object that encapsulates the access control rules for the file described by the path parameter.
ExceptionCondition
ArgumentNullException

The path parameter is nullNothingnullptra null reference (Nothing in Visual Basic).

IOException

An I/O error occurred while opening the directory.

PlatformNotSupportedException

The current operating system is not Microsoft Windows 2000 or later.

SystemException

The directory could not be found.

UnauthorizedAccessException

The path parameter specified a directory that is read-only.

-or-

This operation is not supported on the current platform.

-or-

The caller does not have the required permission.

Use the GetAccessControl method to retrieve the access control list (ACL) entries for a directory.

An ACL describes individuals and/or groups who have, or do not have, rights to specific actions on the given file or directory. For more information, see ACL Technology Overview and How to: Add or Remove Access Control List Entries.

In NTFS environments, ReadAttributes and ReadExtendedAttributes are granted to the user if the user has ListDirectory rights on the parent folder. To deny ReadAttributes and ReadExtendedAttributes, deny ListDirectory on the parent directory.

  • FileIOPermission 

    for permission to enumerate access control list (ACL) for a directory. Associated enumerations: NoAccess , View

    Security action: Demand.

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker