Brian Gawith
2 discussion posts
I need help finding any sub folders that match a pattern but only the ones that are under other folders that also match that pattern. For instance I need to find all folders that start with a 5 digit number followed by an underscore, but I only need to find those folders if they are under another folder that starts with a 5 digit number.
The regular expression to find the first tier folder with 5 digits is easy enough I just put [0-9][0-9][0-9][0-9][0-9]_ in the Include files option, this will also get me the sub folders as well but the I have to filter the Path results to really get what I'm looking for. Anyone know what the proper expression should be to get only the 2nd tier 5 digit folders?