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
(**)
Use of ** does not seem to work.
**
Example directory structure:
/a/b/c/foo.json /a/b/c/bar.json /a/b/xyz.json
My expectation is for the use of (fs/glob "**/*.json") to return a list containing three files, representing foo.json, bar.json, and xyz.json.
(fs/glob "**/*.json")
foo.json
bar.json
xyz.json
Instead, I get nil.
nil
Doing (fs/glob (absolute "/a") "**/*.json") results in the same.
(fs/glob (absolute "/a") "**/*.json")
For expected behavior, see, e.g., glob behavior on Ruby.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Use of
**
does not seem to work.Example directory structure:
My expectation is for the use of
(fs/glob "**/*.json")
to return a list containing three files, representingfoo.json
,bar.json
, andxyz.json
.Instead, I get
nil
.Doing
(fs/glob (absolute "/a") "**/*.json")
results in the same.For expected behavior, see, e.g., glob behavior on Ruby.
The text was updated successfully, but these errors were encountered: