Method | Description | |
---|---|---|
FileSearcher ( ) : System | ||
SearchFiles ( string folder, string pattern, bool regexPattern, bool includeSubfolders ) : string[] |
Search files
|
|
SearchFilesAsync ( string folder, string pattern, bool regexPattern, bool includeSubfolders ) : void |
Search files asynchronously
|
|
Stop ( ) : void |
Method | Description | |
---|---|---|
GetStop ( ) : bool | ||
InitializeRegex ( string pattern, bool compiled ) : void | ||
MaximumWaitTimeExceeded ( ) : bool | ||
ProcessFiles ( string files ) : string[] | ||
ResetSearcher ( ) : void | ||
SearchAsync ( object param ) : void | ||
SearchFilesImpl ( string folder, string pattern, bool includeSubfolders, bool async ) : string[] | ||
SendFiles ( string files, bool forced ) : void | ||
SendLastSet ( ) : void | ||
SendResultChunk ( string files, bool lastSet ) : void | ||
SetStop ( bool value ) : void |
public SearchFiles ( string folder, string pattern, bool regexPattern, bool includeSubfolders ) : string[] | ||
folder | string | The folder where to begin searching. |
pattern | string | The pattern the files need to match (ex. *.txt). |
regexPattern | bool | |
includeSubfolders | bool | Specifies whether or not to search the subfolders. |
return | string[] |
public SearchFilesAsync ( string folder, string pattern, bool regexPattern, bool includeSubfolders ) : void | ||
folder | string | The folder where to begin searching. |
pattern | string | The pattern the files need to match (ex. *.txt). |
regexPattern | bool | |
includeSubfolders | bool | Specifies whether or not to search the subfolders. |
return | void |