find_files
Search for files by regex pattern across directories to locate specific documents or data in your local file system.
Instructions
Find files by name pattern. Returns list of matching file paths. Recursively searches all subdirectories by default.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Relative path to search in. Use "." for root directory. | |
| name_pattern | Yes | Regex pattern to match file names. IMPORTANT: Use regex syntax, not glob. Examples: ".*\.pdf$" for PDF files, "^report.*" for files starting with "report", ".*\.(jpg|png)$" for images. Do NOT use "*" alone. | |
| case_sensitive | No | Whether search should be case sensitive. Default: false. |