glob
glob copied to clipboard
Support for matching file paths against Unix shell style patterns.
In UNIX systems, `~` at the beginning of a pattern matches the home directory of the current user. It would be nice if `glob` supported this as well. NB: as...
It seems to be that there is no way to build a `Paths` from a `Pattern`, except by passing the underlying string of the `Pattern` to `glob`, which means reparsing...
Remove the redundant pattern joining, which can reduce memory allocations during the iteration.