I am trying to compare a template folder with subfolders with an existing directory structure. I am trying to recursively iterate through all the sub folders in each directory. My code is as follows.

public void compareDirectories(DirectoryInfo Templatedir, DirectoryInfo Projectdir)
{
    DirectoryInfo[] recursiveTemplatedirs = Templatedir.GetDirectories("*.*");
    DirectoryInfo[] recursiveProjectdirs = Projectdir.GetDirectories("*.*");

    string recursiveName;
    string projectName;

    foreach (DirectoryInfo recursiveTemplatedir in recursiveTemplatedirs) 
    {
        recursiveName = recursiveTemplatedir.Name.ToString();
        foreach (DirectoryInfo recursiveProjectdir in recursiveProjectdirs)
        {
            projectName = recursiveProjectdir.Name.ToString();
            if (recursiveName == projectName)
            {
                lstTest.Items.Add("Match " + recursiveName);
            }
            else lstTest.Items.Add("No Match " + recursiveName);
        }

        compareDirectories(recursiveTemplatedir, recursiveProjectdir);
    }
}

When I try to run this I get the error that recursiveProjectdir does not exist in this context. Any thoughts on how to get this to run?

link|improve this question
Step through your code. Are both parameters getting passed to compasreDirectories not null? – Shark Jan 9 at 13:37
1  
recursiveProjectdir is only valid in the second foreach scope. – ken2k Jan 9 at 13:38
You can't run this, you're stuck at compiling this. – thekip Jan 9 at 13:39
If you're only concerned with the directories the you could probably avoid this code altogether by using Directory.EnumerateDirectories. Note: Only available in .NET 4. – M.Babcock Jan 9 at 13:41
feedback

1 Answer

You are getting error because scope of recursiveProjectdir is only inside foreach loop

foreach (DirectoryInfo recursiveTemplatedir in recursiveTemplatedirs) 
    {
        recursiveName = recursiveTemplatedir.Name.ToString();
        foreach (DirectoryInfo recursiveProjectdir in recursiveProjectdirs)
        {
        }
        //recursiveProjectdir doesn't exists outside the foreach loop
        compareDirectories(recursiveTemplatedir, recursiveProjectdir);
    }
link|improve this answer
Is there a method I can pass recursiveProjectdir out of the foreach loop. Ultimately, I am trying to compare directories in both locations and then change ACL permissions on the existing directories with ACL permissions set on the template directories. – Steve Meyer Jan 9 at 14:42
recursiveProjectdir is inside foreach loop. Which instance of recursiveProjectdir do you want to use outside foreach? You can simply declare a variable outside foreach and assign it value inside foreach. In this way you can use recursiveProjectdir outside foreach – Haris Hasan Jan 9 at 15:27
feedback

Your Answer

 
or
required, but never shown

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