Consider the path to a file like this:
"\\Tests\Results\knowles\project\LU\D15\RUN1\Results.xml"
How can I make a new string that gives the path to the "project" folder in the string above? I tried to use FirstIndexOf("project") but it always fails!
Is there a static method or something in Directory or Path class?
I want to have a new string which contains the path to the "project" folder, from similar strings like above example, something like
var newPath = "\\\\Tests\\Results\\knowles\\project"
Please note, the "project" folder is just an example, it can be any name, what I ment is that I want to get the path to the folder that suppose to be in place of the project in my example.
Again, my mistake I guess, the original string does not come always with fixed number of folders, it is for sure does have atleast one or two folders after the 'project' folder...I need a way to approach it from left to right I guess
\\Tests\Results\knowles\project\project\project\project\LU\D15\RUN1\Results.xml? Which path should be returned in this case? – Sergey Brunov Jul 25 '12 at 8:27