How to specify foldername with wildcard inside a jinja template

I wish to check using if condition inside a jinja template where any of the folders starting with the name “dump_” has any file starting with the name bad

For for single folder the below jinja template works as suggested by an expert on this forum.

{% if lookup('fileglob', playbook_dir + '/' + 'dump_' + item + '/' + 'bad*.txt') %}

I understand that fileglob supports wildcards only on files and not on folders.

The below fails when wildcard is applied to a folder.

{% if lookup('fileglob', playbook_dir + '/' + 'dump_*' + '/' + 'bad*.txt') %}

Any solution to this problem please inside a jinja template?

Try the 'lines' lookup with a custom 'find' shell command ?