vote up 0 vote down star

If i have:

C:\temp\foo\bar\

(NOTE: bar is a directory)

how can i parse out:

bar

flag

Is the bar a file name or another directory? – prashant_sp Mar 22 at 10:51
bar is a directory . . i have added another \ to make it explicit – oo Mar 22 at 10:53
1  
I don't mean to be rude, but I find it incredible that a person with a rep of 3,752, a person who already gave an answer on splitting a string(!) suddenly a) doesn't know how to parse a string and b) can't find that information in a tutorial or on the net ??? – Sandman Mar 22 at 11:58
Sandman - i definitely could parse this out manually but wanted to see if there was a more elegant solution. I dont see why you should spentd 30 minutes searching if you can push this question out on SOF. Now, next time someone has this question, they will find it right away on google via search – oo Mar 22 at 22:48

8 Answers

vote up 1 vote down

Just use:

string dirname = new DirectoryInfo(@"C:\temp\foo\bar\").name;

According to MSDN this returns the name of the directory, not the full path.

Link to MSDN Library

Hope this helps...

link|flag
vote up 0 vote down

Try this

string DirName = System.IO.Directory.GetParent(@"C:\temp\foo\bar\").Name;
link|flag
vote up 3 vote down

It looks like a bunch of people have withdrawn their answers, which is possibly a shame.

This one's got to be worth stating, only for the "teach a man to fish" quality of it - it's short, elegant and made of two separate things that, once learned, can be re-applied to other problems.

string lastPiece = wholePath.Split('\\').Last();

Last will throw if the list is empty.

link|flag
maybe it's better to use (System.IO) PathSeparator ? – abatishchev Mar 22 at 23:15
vote up 3 vote down

I can think of 4 ways instantly

1

  • If the string ends with a slash remove it
  • Use Path.GetFilename (or numerous other System.IO methods)

2

  • Split the string on slashes into an array
  • Get the last index of the array

3

  • Create a Uri class with it in the constructor
  • Use the Segments property

4

  • The linq way someone mentioned above
link|flag
vote up 5 vote down check

i figured it out.

DirectoryInfo info = new DirectoryInfo(sourceDirectory_);

string currentDirectoryName = info.Name;

link|flag
don't forget mark as answer if acceptable – abatishchev Mar 22 at 23:13
vote up 0 vote down

if the answers above do not satisfy your needs, why not just substring the string from the last .

string dirName = originalDirName.Substring(originalDirName.LastIndexOf("\\") + 1);

sure, you should do some checking if the originalDirName does not end on a \ and if the originalDirName is longer than zero and actually contains \ characters.

link|flag
Good call. More efficient than splitting if it's just the last dir in the path that's needed. – Chris Mar 22 at 10:58
vote up 7 vote down

Try

System.IO.Path.GetFileName("C:\temp\foo\bar");
link|flag
vote up 0 vote down

In Unix this is known as the basename, a quick google came up with this link for a C# version. I'm sure there are others ...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.