Find files on Windows modified after a given date using the command line

The forfiles command works without resorting to PowerShell. The article is here:

Find files based on modified time

Microsoft Technet documentation: forfiles

For the example above:

forfiles /P <dir> /S /D +12/07/2013
  • /P The starting path to search
  • /S Recurse into sub-directories
  • /D Date to search, the “+” means “greater than” or “since”

Leave a Comment

tech