i'm using Directory.GetFiles to give me mp3 files, and i'd like to fill a ListBox with the results, but instead of stopping the program while it goes through the method, can i get it to search and fill the ListBox up as it gets the mp3 files?
so what i'm using is as follows (and it is failing to add them one at at time, it is adding them all at once when it is done)
private List<string> Getmp3sFromFolders(string folder)
{
List<string> fileArray = new List<string>();
try
{
DirectoryInfo dir = new DirectoryInfo(folder);
var files = dir.EnumerateFiles("*.mp3");
foreach (var file in files)
{
fileArray.Add(file.FullName);
Dispatcher.BeginInvoke(_AddMP3ToListbox, file.Name);
}
var directories = dir.EnumerateDirectories();
foreach (var subdir in directories)
{
fileArray.AddRange(Getmp3sFromFolders(subdir.FullName));
}
// lblFolderSearching.Content = folder.ToString();
}
catch
{
}
return fileArray;
}
i did add _AddMP3ToListbox = AddMP3ToListbox
it does indeed add the mp3's to the listbox, but it does so all at once, not as soon as it finds it. how can i fix this?