SOLVED: How To MOVE Files Based On Their Age using RoboCopy
Below is a script of how to MOVE files to a folder based on their age: ROBOCOPY <source> <destination> /MOVE /E /MINAGE:<number_of_days> /CREATE /R:1 /W:1 /XD <folders_you_want_to_omit> Sample: ROBOCOPY E:\ E:\_ToBeDeleted /MOVE /E /MINAGE:21 /CREATE /R:1 /W:1 /XD E:\COMPANY_PICS E:\_ToBeDeleted The translation of this command is: ROBOCOPY E:\ – look at the E: Read more…