ClientFolderFindNewFiles Method (String, String) |
Returns a List of
MOVEitFileInfo objects which contain
information about NEW files whose names match the specified mask, and which are located
in folders whose MOVEitFolder path is or begins with the provided MOVEitFolder.
Namespace: MOVEit.DMZ.APIAssembly: MOVEit.DMZ.API (in MOVEit.DMZ.API.dll) Version: 9.0.0.0
Syntax public List<MOVEitFileInfo> FolderFindNewFiles(
string Mask,
string MOVEitFolder
)
Public Function FolderFindNewFiles (
Mask As String,
MOVEitFolder As String
) As List(Of MOVEitFileInfo)
public:
List<MOVEitFileInfo^>^ FolderFindNewFiles(
String^ Mask,
String^ MOVEitFolder
)
Parameters
- Mask
- Type: SystemString
File search mask. - MOVEitFolder
- Type: SystemString
Path or ID of the folder to limit searches to.
Return Value
Type:
ListMOVEitFileInfoList containing search results if successful; otherwise,
null.
Remarks
This method can be used to search a tree of directories for files of a certain name.
Returns an empty List if no files are found.
See Also