I kind of managed to organize itunes and all the files using three simple lines of R code

z<-list.files(“C:/Cauldron/Personal/rhythm/",full.names=T,recursive = T)
to.d <- “C:/Cauldron/Personal/rhythm/Sort”
file.copy(z, to.d)