Well, I get that the glob filesystem function is useful to list all directories and files given the pattern.
glob
However, how to list recursively?
For example I want to list all TXT files in the current directory and its subdirectories.
In Python, I can do like this pattern:
**.txt
Have you tried out said way which also works in Python? I guess the current alternative is to loop with a for loop through all folders and file list them and then it goes on. But I can't really say anythign about this, appologies.
**.txt works on Python but not on NVGT. Even things like **/*.txt does not work on NVGT, which works on Python.
**/*.txt
How does it look with /.txt?
The *.txt works for current directory. But this /.txt is a complete silent
*.txt
/.txt