Returns the names of the files in the specified directory
that fit the selection criteria specified in the FileSelector.
| C# | Visual Basic | Visual C++ |
public ICollection<string> SelectFiles( string directory )
Public Function SelectFiles ( _ directory As String _ ) As ICollection(Of String)
public: ICollection<String^>^ SelectFiles( String^ directory )
- directory (String)
- The name of the directory over which to apply the FileSelector criteria.
A collection of strings containing fully-qualified pathnames of files
that match the criteria specified in the FileSelector instance.
This is equivalent to calling SelectFiles(String, Boolean)
with recurseDirectories = false.