This is only an issue because some antique software has Y2K issues, I need to move the file creation dates from 1990's to 2000 but for files across 21 subdirectories. A way to manage it recursively is what I'm looking for.
This ends up as an NFS share back to an MSDOS client and it appears to be using the creation date. Not the modified date, as I've tried the touch mod already with no success.
You can change the modification times of all files and directories under your target directory with:
That will set the modification time to today. You can also set it to a specific date of your choosing:
I really doubt you'd need to touch the creation date since they're not really used in Linux (see [1],[2],[3]) kernel doesn't even provide a way of accessing it easily.