Ionic Zip Library v1.9.1.6
SelectFiles Method (directory)
Reference ► Ionic ► FileSelector ► SelectFiles(String)
Returns the names of the files in the specified directory
that fit the selection criteria specified in the FileSelector.
Declaration Syntax
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 )
Parameters
- directory (String)
- The name of the directory over which to apply the FileSelector criteria.
Return Value
A collection of strings containing fully-qualified pathnames of files
that match the criteria specified in the FileSelector instance.
Remarks
This is equivalent to calling SelectFiles(String, Boolean)
with recurseDirectories = false.