How can I change the modified date of a symlink?

Solution 1:

You need to add the '-h' parameter to modify symbolic link timestamps.

In your case:

touch -mht 201202112109 "Users/scott/symlink"

Without the '-h' the timestamp of the file that is linked to is modified.