How would I iterate through each folder in a specific file path and then for each of those folders found iterate through each of their files?
DirectoryInfo dir = new DirectoryInfo(@"C:\Path");
foreach (DirectoryInfo folders in dir.GetDirectories())
foreach (DirectoryInfo files in folders.GetFiles())
Your semicolon on the second
foreachmay be causing you grief, otherwise your code should work with slight modification.