ROBOCOPY source destination *.* /maxage: <20171231> [closed]

I need to copy files from one folder to another, I want to copy files younger than Dec 31st 2017: ROBOCOPY source destination . /maxage: <20171231>

1 Answer

Here's the link to the documentation:

Maxage is specified in days, so today is 231 days since December 31, so I'd use /maxage:231 (you could use "minlad", if you have last-access-tracking turned on).

1

You Might Also Like