I have an IEnumerable<DirectoryInfo> that I want to filter down using an array of regular expressions to find the potential matches. I've been trying to join my directory and regex strings using linq, but can't seem to get it right. Here's what I'm trying to do...

string[] regexStrings = ... // some regex match code here.

// get all of the directories below some root that match my initial criteria.
var directories = from d in root.GetDirectories("*", SearchOption.AllDirectories)
                  where (d.Attributes & (FileAttributes.System | FileAttributes.Hidden)) == 0
                        && (d.GetDirectories().Where(dd => (dd.Attributes & (FileAttributes.System | FileAttributes.Hidden)) == 0).Count() > 0// has directories
                            || d.GetFiles().Where(ff => (ff.Attributes & (FileAttributes.Hidden | FileAttributes.System)) == 0).Count() > 0) // has files)
                  select d;

// filter the list of all directories based on the strings in the regex array
var filteredDirs = from d in directories
                   join s in regexStrings on Regex.IsMatch(d.FullName, s)  // compiler doesn't like this line
                   select d;

... any suggestions on how I can get this to work?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

If you only want directories that match all regular expressions.

var result = directories
    .Where(d => regexStrings.All(s => Regex.IsMatch(d.FullName, s)));

If you only want directories that match at least one regular expressions.

var result = directories
    .Where(d => regexStrings.Any(s => Regex.IsMatch(d.FullName, s)));
link|improve this answer
Ah, good call on the Any(). I keep forgetting about those! – Adam Robinson Jul 8 '09 at 18:42
Doh! - i forget about those (Any & All) all the time too. – Scott Ivey Jul 8 '09 at 18:44
feedback

I don't think that the approach you're taking is exactly what you want anyhow. That will check the name against ALL regex strings, rather than short circuiting on the first match. Additionally, it would duplicate the directories if one matched more than one pattern.

I think you want something like:

string[] regexStrings = ... // some regex match code here.

// get all of the directories below some root that match my initial criteria.
var directories = from d in root.GetDirectories("*", SearchOption.AllDirectories)
                  where (d.Attributes & (FileAttributes.System | FileAttributes.Hidden)) == 0
                        && (d.GetDirectories().Where(dd => (dd.Attributes & (FileAttributes.System | FileAttributes.Hidden)) == 0).Count() > 0// has directories
                            || d.GetFiles().Where(ff => (ff.Attributes & (FileAttributes.Hidden | FileAttributes.System)) == 0).Count() > 0) // has files)
                  select d;

// filter the list of all directories based on the strings in the regex array
var filteredDirs = directories.Where(d =>
    {
        foreach (string pattern in regexStrings)
        {
            if (System.Text.RegularExpressions.Regex.IsMatch(d.FullName, pattern))
            {
                return true;
            }
        }

        return false;
    });
link|improve this answer
+1 good answer. – Scott Ivey Jul 8 '09 at 18:44
feedback

you are missing your Where keyword in front of the join

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.