Is there an easy way to get a list of files matching a specified filemask? By filemask I mean classic wildcard, not regexp.
I can use file-seq and then filter with regexp created from a wildcard. However, it is not trivial (consider escaping etc.)
I am also aware of FilenameUtils.wildcardMatch() from Apache Commons, but I'm reluctant to add such a dependency for a tiny tool I'm building.
There must exist something in the Clojure ecosystem I am not aware of.