test_glob
Determine whether a file path matches a glob pattern using wildcards like *, **, ?, character classes, and brace expansion.
Instructions
Test if a file path matches a glob pattern (supports *, **, ?, character classes, brace expansion)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | File path to test | |
| pattern | Yes | Glob pattern (e.g. 'src/**/*.ts') |