Hi,
Need to get names of all subfolders within the Application folder.

Currently I'm getting the full paths with the following code, but I'd like to get just the folder names.
Code:
string[] folders = Directory.GetDirectories(Application.StartupPath);
foreach(string folder in folders)
{
    this.listBox1.Items.Add(folder);
}