I'm looking for a function similar to the python glob function.
If my folder structure is:
folder1/abc1.txt
folder1/xyz1.txt
folder1/abc2.txt
folder2/abc3.txt
folder2/xyz4.txt
folder3/abc5.txt
then if I give */abc*
, I'm looking for an output of:
folder1/abc1.txt
folder1/abc2.txt
folder2/abc3.txt
folder3/abc5.txt
I tried entrylist, but it just lets me filter on what's in the current folder.
You can of course traverse recursively with an embedded loop like this:
main.cpp
main.pro
Build and Run
Output