Fast file pattern matching tool that finds files by name/pattern, returning paths sorted by modification time (newest first).
- Provide glob pattern to match against file paths - Optional starting directory (defaults to current working directory) - Results sorted with most recently modified files first<pattern_syntax>
- '*' matches any sequence of non-separator characters
- '**' matches any sequence including separators
- '?' matches any single non-separator character
- '[...]' matches any character in brackets
- '[!...]' matches any character not in brackets </pattern_syntax>
<cross_platform>
- Path separators handled automatically (/ and \ work)
- Uses ripgrep (rg) if available, otherwise Go implementation
- Patterns should use forward slashes (/) for compatibility </cross_platform>