I want to move a todays date files to todays folder daily basis

This will show you how to get just the files for today:

First check if the folder doesn’t already exist, and create it.

image

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)