We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, thank you for this nice library!
I think glob::rglob("dir/**/*.ext") should match:
Currently it only matches:
Or how else one can recursively get all .ext files within dir?
The text was updated successfully, but these errors were encountered:
Yes, I agree. Glob in this case should include dir/file.ext. Thanks for reporting!
dir/file.ext
Sorry, something went wrong.
Is this issue fixed with the merge of #26 or still open? We are using this library in a project and in our testing, this still doesn't work.
If I have the following file tree:
$ tree test test |-- dir | |-- dir1 | | `-- test2.txt | `-- test1.txt `-- test0.txt
and try to use the rglob function with the pattern test/**/*.txt on the folder test, it selects test1.txt and test2.txt, but not test0.txt
rglob
test/**/*.txt
test
test1.txt
test2.txt
test0.txt
No branches or pull requests
Hi, thank you for this nice library!
I think glob::rglob("dir/**/*.ext") should match:
Currently it only matches:
Or how else one can recursively get all .ext files within dir?
The text was updated successfully, but these errors were encountered: