IObjectSecurity Method: GetAccessPermissions

GetAccessPermissions
(
Trustee As String
); As String

Parameters

[in] String Trustee
User or group name for whom permissions have to be returned.

Description
Gets the access permissions for a trustee. Note that this operation does not check for indirect access permissions users might have due to their group memberships. To get the indirect access permission, use the GetEffectivePermissions method.

Return Values
Permissions for the Trustee on the currently attached object. See Access Permissions for all possible permissions.

Example

Dim ObjSec  As IObjectSecurity
Set ObjSec = CreateObject("DirectScript.ObjectSecurity")
'Attach to the file c:\test.txt
ObjSec.AttachFile "c:\test.txt"
'Print the permissions that "TrusteeName" has on the file c:\test.txt
Debug.Print ObjSec.GetAccessPermissions("TrusteeName")

 

See Also