Find all directories in directory and return only name

.net, directory, vb.net

Solution

The simplest way is to use `System.IO.DirectoryInfo`:

    For Each Dir As String In System.IO.Directory.GetDirectories(FolderName)
        Dim dirInfo As New System.IO.DirectoryInfo(Dir)
        ComboBox3.Items.Add(dirInfo.Name)
    Next

(Obviously, you could parse it manually and extract out the text following the final '\', but I believe that the above is more readable)

Problem

I want to find all directories in one directory in vb.net. I found one script: ``` For Each Dir As String In Directory.GetDirectories(FolderName) ComboBox3.Items.Add(Dir) Next ``` It returns full name of path, but I want it to return only name of path.

Original source