One comment

  1. Good example!

    Couple of quick notes:

    – since we do "path and pattern", when you’re doing recursive, you could do c:folder*.cs or $/*.cs to get all the .cs files under a given dir

    – one alternative approach would be to properties *.cs and check the changeset or checked-in date – if later than cut-off, it’s been changed

    – another potential approach would be to diff *.cs recursively /type:binary between that date and tip to see if each file has changed

    – this would have secondary effect of ignoring files where the contents hadn’t actually changed (rename/deleted/undelete/etc. types of changes only)

    James Manning

Comments are closed.