Mac OS change creation and last modification dates of a folder

macos

Solution

I believe following find/touch should work:

find /target/dir -exec touch '{}' \;

From `man touch`:

touch -- change file access and modification times

Problem

What is the easiest way to change the creation and last modification dates of a folder (and recursively contained items) in Mac OS?

Original source