aboutsummaryrefslogtreecommitdiff
path: root/src/utils/globber.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add glob pattern matching utility魏曹先生2025-12-011-0/+239
This implements a Globber struct that can match files and directories using wildcard patterns (* and ?). It supports relative paths, home directory expansion with ~, and cross-platform path separators. The implementation includes pattern matching with backtracking for complex patterns and handles different directory prefixes (current, user home, and root).