This is what I have:
Glob(os.path.join('src','*.c'))
but I want to search the subfolders of src. Something like this would work:
Glob(os.path.join('src','*.c'))
Glob(os.path.join('src','*','*.c'))
Glob(os.path.join('src','*','*','*.c'))
Glob(os.path.join('src','*','*','*','*.c'))
But this is obviously limited and clunky.