>How do I search a directory and subdirectories in java looking for
>filenames
>matching nominated search criteria.
>
>OFr example, all files that contain "*foo*" in their name.
You write a recursive method that searches a directory and spawns a
search on each directory it finds.
You use
File.List( FilenameFilter );
to get just the files you want.
See http://mindprod.com/jgloss/file.html
http://mindprod.com/jgloss/filter.html
You might like to use my RegexFilter.
See http://mindprod.com/products1.html#FILTER

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.