Search for Files in Directory Using Wildcards in Java

(Please see my previous post about how to do this for very simple cases in Java.)
Sometimes you want to be able to search for files using patterns. For example, you might want to find all the files in a directory with a .htm extension. A reasonable way to accomplish this is to use regular expressions. [...] Read more »