Lets assume the following function:

private void ParseFolder(string strFolder)
{
    foreach (string currentFolder in Directory.GetDirectories(strFolder))
    ParseFolder(strFolder);
}

Now we start our recursive loop with:

ParseFolder("C:\");

Is there a way to be notified when this recusrive loop ends (= all directories have been parsed)?

link|improve this question
feedback

2 Answers

Yes, just add a method call after it:

ParseFolder("C:\\"); // You need to escape \
Notify();
link|improve this answer
1  
Haha. I found that funny for some reason. – Charlie Somerville Oct 2 '09 at 12:01
feedback
private void DoWork()
{
     ParseFolder("C:\\");
     // Once you get here, the work is done.
}


private void ParseFolder(string strFolder)
{
    foreach (string currentFolder in Directory.GetDirectories(strFolder))
    ParseFolder(strFolder);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown