| ClientFolderAccessAddUser Method  | 
            Grants the specified user access to this folder.
            
 
Namespace: MOVEit.DMZ.APIAssembly: MOVEit.DMZ.API (in MOVEit.DMZ.API.dll) Version: 9.0.0.0
Syntaxpublic bool FolderAccessAddUser(
	string MOVEitFolder,
	string Username,
	string PermString
)
Public Function FolderAccessAddUser ( 
	MOVEitFolder As String,
	Username As String,
	PermString As String
) As Boolean
public:
bool FolderAccessAddUser(
	String^ MOVEitFolder, 
	String^ Username, 
	String^ PermString
)
Parameters
- MOVEitFolder
 - Type: SystemString
Path or ID of the folder on the MOVEit Transfer host to add a group permission to. - Username
 - Type: SystemString
Username to add a permission for. - PermString
 - Type: SystemString
Permission string to apply to the folder. 
Return Value
Type: 
Booleantrue if successful; otherwise, 
false.
Remarks
            The PermString parameter should consist of 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