Meh
[SIZE=2][COLOR=#2b91af]DirectoryInfo[/COLOR][/SIZE][SIZE=2] Di = [/SIZE][SIZE=2][COLOR=#0000ff]new [/COLOR][/SIZE][SIZE=2][COLOR=#2b91af]DirectoryInfo[/COLOR][/SIZE][SIZE=2]([/SIZE][SIZE=2][COLOR=#a31515]"C:\\Documents and Settings\\Sean\\My Documents\\My Music"[/COLOR][/SIZE][SIZE=2]);[/SIZE]
[SIZE=2][COLOR=#2b91af]FileInfo[/COLOR][/SIZE][SIZE=2][] FlderFiles = Di.GetFiles();[/SIZE]
[SIZE=2][COLOR=#0000ff]foreach[/COLOR][/SIZE][SIZE=2] ([/SIZE][SIZE=2][COLOR=#2b91af]FileInfo[/COLOR][/SIZE][SIZE=2] F [/SIZE][SIZE=2][COLOR=#0000ff]in[/COLOR][/SIZE][SIZE=2] FlderFiles)[/SIZE]
[SIZE=2]{[/SIZE]
[SIZE=2][COLOR=#2b91af] MessageBox[/COLOR][/SIZE][SIZE=2].Show(F.Name);[/SIZE]
[SIZE=2]}[/SIZE]
DirectoryInfo Di = new DirectoryInfo("C:\\Documents and Settings\\Sean\\My Documents\\My Music");
FileInfo[] FlderFiles = Di.GetFiles("*.mp3");
foreach (FileInfo F in FlderFiles)
{
MessageBox.Show(F.Name);
}