To make a long story short, Mp3Tag for example, adds folders 1 to 5 first to last. When I add the same folders in my program it adds the folders from 5 (first) to 1 (last). Is there a way I can fix this?
Here's the code I've been using.
If FolderBrowserDialogMain.ShowDialog = DialogResult.OK Then
For Each mp3 In Directory.GetFiles(FolderBrowserDialogMain.SelectedPath, "*.mp3", IO.SearchOption.AllDirectories)
Dim fiFileInfo As New FileInfo(mp3)
ListViewMain.Items.Add(fiFileInfo.Name)
Next
End If