'Declaration Public Overloads Function GetFiles( _ ByVal recursive As Boolean, _ ByVal ParamArray filters() As Object _ ) As AbstractFile()
'Usage Dim instance As AbstractFolder Dim recursive As Boolean Dim filters() As Object Dim value() As AbstractFile value = instance.GetFiles(recursive, filters)
public AbstractFile[] GetFiles( bool recursive, params object[] filters )
Parameters
- recursive
- true if files contained in the subfolders should be returned; false if only files that are immediate children of the folder should be returned.
- filters
- An array of objects that can be used to filter the list of files returned.
Return Value
An array of AbstractFile objects representing the files that match the specified filters.