Basically want something similar to the python glob command.

glob("*/abc*.dat")

would search the first level of subfolders and give me string list of file paths for all files (from cwd) starting with "abc" ending with ".dat"

Is there a quick similar QT function?