This will show you how to get just the files for today:
First check if the folder doesn’t already exist, and create it.
Then For Each through New System.IO.DirectoryInfo("C:\temp").GetFiles("*").Where(Function(s) s.LastWriteTime.Date = Today)
and move the files.
(Note that you may want to use something other than LastWriteTime such as CreatedDate)