To move multiple files to a new folder everytime

Hi ,

Below is the scenario

A.txt
B.txt
C.csv
..........

i want to move all the above files in to a new path & new folder .This folder is created based on date(for ex: today's fodler name will be 20120222).for Everyday move a new folder based on date has to be created & this folder should contain all the files.

Thanks in Advance

NEWFOLDER=$(date +%Y%m%d)
mkdir -p ${NEWFOLDER}
mv A.txt B.txt C.csv ${NEWFOLDER}