Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
Closed
Description
In#81079 we added acase_sensitive argument topathlib.Path.glob() andrglob(). It would be good to have this functionality available in the closely-relatedPurePath.match() method. The rationale is much the same: this argument is useful when dealing with case-sensitive filesystems on Windows, and case-insensitive filesystems on Posix. Also, it would allow this method to be used fromglob() to implement recursive globbing efficiently, which is important for#102613.