FilenameFilter
Dear all,
I am pretty new and have the following problem: I want to list specific files from a directory. The files I want to filter have this format:
12e8_H.rsa
12e8_M.rsa
but NOT
12e8_HM.rsa
I have a regexp for it:
.*_[A-Z]?\\.rsa
which worked fine in Perl.
My question is: how can I test the file names in the directory against this expression and store in an array?
I hope I the information I give is enough!
Many thanks, Thomas

