ClientFolderAccessList Method |
Returns a Dictionary object containing string pairs of users and groups with access to this folder.
Namespace: MOVEit.DMZ.APIAssembly: MOVEit.DMZ.API (in MOVEit.DMZ.API.dll) Version: 9.0.0.0
Syntax public Dictionary<string, string> FolderAccessList(
string MOVEitFolder
)
Public Function FolderAccessList (
MOVEitFolder As String
) As Dictionary(Of String, String)
public:
Dictionary<String^, String^>^ FolderAccessList(
String^ MOVEitFolder
)
Parameters
- MOVEitFolder
- Type: SystemString
Path or ID of the folder on the MOVEit Transfer host to list access rights for.
Return Value
Type:
DictionaryString,
StringDictionary containing access rights list if allowed; otherwise,
null.
Remarks
The KEY will be either a username or a group name (group
names will be prefixed with the phrase "GROUP:"). The VALUE will be a
PermissionString describing the permissions this user or group currently enjoys
on this folder. Returns an empty Dictionary if no access items are found or
null if the currently authorized user is not permitted to get this
information.
The permission strings will contain one or more of the following letters:
A | Admin |
E | Add/delete subfolders |
D | Delete files |
L | List files |
N | Notify |
R | Read files |
W | Write files |
See Also