I\'m working on something that requires traversing through the file system and for any given path, I need to know how \'deep\' I am in the folder structure. Here\'s what I\'m cu
Off the top of my head:
Directory.GetFullPath().Split("\\").Length;