How to move only files which datemodified date is today?

@Dorothy_lee - Below code will get the list of files modified today…

StrArrFiles = Directory.GetFiles("C:\Users\giris\Desktop").Where(Function(x) New FileInfo(x).LastWriteTime.Date = DateTime.Today.Date).ToArray

Use the StrArrFiles, in the For each and move the files to the target folder.

Hope this helps