I have this code
foreach (syncspec.Attribute attr in attributes)
{
string fullPath = location + "\\" + attr.link;
if (File.Exists(fullPath))
}
and i am checking a know location and an example fullpath is listed below
// fullPath = "C:\\Users\\matt\\Desktop\\shard\\all/file30005"
What i want to do is look in the all folder and any subfolders within the all folder...any ideas on how to achieve this