> I want to INCLUDE all files such as:
> (a) RecruiterDirectoryListingHHHH.html
>
> I want to EXCLUDE all files such as:
> (b) RecruiterDirectoryHHHH.html
>
> It seems to me that -*/*RecruiterDirectory*
> will exclude both (a) and (b)
Yes it will. Try:
-*/RecruiterDirectory* +*/RecruiterDirectoryListing*
|