in reply to how to make wildcard work in if (-e *..)

or if you're wed to the glob:

map { $txt = 1 if -e } <*.txt>;

-derby