ShellSearchEditSearch Method |
Starts the search in the current folder.
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic void Search(
string pQuery
)
Public Sub Search (
pQuery As String
)
public:
void Search(
String^ pQuery
)
member Search :
pQuery : string -> unit
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:
Example
The following example shows how to search for all files greater than
1 GB in the current folder and subfolders:
Search('System.Size:>1GB');
Example
The following example shows how to search for all pictures in the
current folder and subfolders:
Search('System.Kind:=picture');
See Also