Listing Only SubFolders In C#?

Hunter Mitchell picture Hunter Mitchell · May 19, 2012 · Viewed 23.1k times · Source

I have some code:

string pathUser = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
string pathDownload = Path.Combine(pathUser, @"documents\iracing\setups\");
DirectoryInfo dinfo = new DirectoryInfo(pathDownload); // Populates field with all Sub Folders
FileInfo[] Files = dinfo.GetFiles("*.sto");
foreach (FileInfo file in Files)
{
     listBox2.Items.Add(file.Name);
}

I want the subFolders of: documents\iracing\setups\ to be shown, not the files...including the .sto files. All i need is to list the Subfolders....i have no idea how to do that? Thanks!

Answer

Omar picture Omar · May 19, 2012

You can try this:

DirectoryInfo directory = new DirectoryInfo(pathDownload);
DirectoryInfo[] directories = directory.GetDirectories();

foreach(DirectoryInfo folder in directories)
     listBox2.Items.Add(folder.Name);