here is what am trying to do
let say i have a directory called
c:\ARTISTS

thats the root
in that directory there is let say 30 different artits
and in those artists SOME can have more than one album
those that dont have more than one album
the songs are located in just the name of the artist

so if artst1 had one album
all the songs would be located in c:\Artists\artist1

and if artist2 had 2 albums
it would be like
c:\artists\artist2\album1 (songs for this album go here)
c:\artists\artist2\album2 (songs for album2 go here)

so i would like someone to help me out with making a function that when given c:\artist\
it will go into every directory
and copy artist name(directory), album name( sub directory), and song names (filenames)
into a table..

thank you