| ClientFolderListFilesWithMask Method  | 
            Returns a List of 
MOVEitFileInfo objects which contain
            information about files in the specified folder whose names match the specified mask.
            
 
Namespace: MOVEit.DMZ.APIAssembly: MOVEit.DMZ.API (in MOVEit.DMZ.API.dll) Version: 9.0.0.0
Syntaxpublic List<MOVEitFileInfo> FolderListFilesWithMask(
	string MOVEitFolder,
	string Mask
)
Public Function FolderListFilesWithMask ( 
	MOVEitFolder As String,
	Mask As String
) As List(Of MOVEitFileInfo)
public:
List<MOVEitFileInfo^>^ FolderListFilesWithMask(
	String^ MOVEitFolder, 
	String^ Mask
)
Parameters
- MOVEitFolder
 - Type: SystemString
Path or ID of the folder on the MOVEit Transfer host to list files of. - Mask
 - Type: SystemString
Mask to apply against file list. 
Return Value
Type: 
ListMOVEitFileInfoList containing list results if successful; otherwise, 
null.
Remarks
            Returns an empty List if no files are found.
            Returns null if the current user is not authorized to list files in the given folder.
            
See Also