ShellSearchEditSearch Method |
Starts the search in the current folder.
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax public void Search(
string pQuery
)
Public Sub Search (
pQuery As String
)
public:
void Search(
String^ pQuery
)
member Search :
pQuery : string -> unit
Parameters
- pQuery
- Type: SystemString
The search expression. Advanced Query Syntax
is supported. If empty nothing will be searched.
Remarks Examples
The following example shows how to search for all .exe files in the
current folder and subfolders:
Examples
The following example shows how to search for all files greater than
1 GB in the current folder and subfolders:
Search('System.Size:>1GB');
Examples
The following example shows how to search for all pictures in the
current folder and subfolders:
Search('System.Kind:=picture');
See Also