Bundle In-memory object query engine. Table stores typed records and supports filtering, aggregation (sum, average), and CSV/filesystem import. Finder provides filesystem search. Compile with -lib query.
Finder
Supports string data queries
Operations
FindFiles #
Finds matching files in a given directory
method : public : FindFiles(path:String) ~ Vector<String>Parameters
| Name | Type | Description |
|---|---|---|
| path | String | root directory to start searching |
Return
| Type | Description |
|---|---|
| Vector<String> | matching file names |
Example
finder := Query.Structured.Finder->New(".*\\.json$"); # find JSON files
results := finder->FindFiles("/etc/");
each(i : results) {
results->Get(i)->PrintLine();
};