1var folders = from folder in new DirectoryInfo(@"K:\SomeFolder").GetDirectories() 2 where folder.Name == "SubFolderName" 3 select folder; 4