History  | 
FindFirst (Directory) 
Minimum version: 4.0 
Purpose 
Finds Directory entries. 
This method begins at the first entry and moves forward until an entry that matches a specified string is found, or the end of the entries is reached. If FullName is empty, nothing will be found. 
The Directory must be opened using OpenDirectory or OpenWhosOnline before FindFirst can be used. 
You can access the data attributes of the currently found entry. 
Syntax 
ServerDirectory.FindFirst (Pattern) 
 Example 
Dim sd as ServerDirectory 
sd.FindFirst ("whit*") 
 | ||||