How to search for files with a wildcard in Common Lisp?
问题 I am not satisfied to find files matching a string like this: (remove-if-not (lambda (it) (search "wildcard" (namestring it))) (uiop:directory-files "./")) ;; I'll ignore case with str:contains? ;; https://github.com/vindarel/cl-str How would one search for files with unix-style wildcards ? If it is not built-in, I'd enjoy a solution with uiop. Maybe there is with Osicat or cl-fad (with which it doesn't seem so, the documentation oftentimes says "non-wild pathname"). Bonus if it is possible