Click or drag to resize

ShellSearchEditSearch Method

Starts the search in the current folder.

Namespace: Jam.Shell
Assembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntax
public void Search(
	string pQuery
)

Parameters

pQuery  String
The search expression. Advanced Query Syntax is supported. If empty nothing will be searched.
Remarks
Example
The following example shows how to search for all .exe files in the current folder and subfolders:
C#
Search('*.exe');
Example
The following example shows how to search for all files greater than 1 GB in the current folder and subfolders:
C#
Search('System.Size:>1GB');
Example
The following example shows how to search for all pictures in the current folder and subfolders:
C#
Search('System.Kind:=picture');
See Also