If i have:
C:\temp\foo\bar\
(NOTE: bar is a directory)
how can i parse out:
bar
|
|
I figured it out.
|
||||
|
|
|
Just use:
According to MSDN this returns the name of the directory, not the full path. Hope this helps......... |
||||
|
|
|
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.
|
|||||
|
|
I can think of 4 ways instantly 1
2
3
4
|
||||
|
|
|
The simplest way to do this without creating a new DirectoryInfo instance is to use the Path.GetFileName static method. This is located in System.IO.
The variable would be set to "Folder2". This is quite a bit more efficient that creating a new instance of the DirectoryInfo class! |
|||||||||
|
|
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 ... |
|||
|
|
|
if the answers above do not satisfy your needs, why not just substring the string from the last .
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. |
||||
|
|
Try this
|
|||
|
|