In my downloads folder on my Mac the files have a "Date Added" column.
I'm trying to create a script to move files that are older than x days to my trash folder. The following works but it is pulling the files based on created/modified date, not the "Date Added" that I see from Finder. Is there a way to display/use this "Date Added" field?
find /users/home/downloads -maxdepth 1 -mtime +365 -type f -exec mv "{}" /destination/ \;
It looks like with the STAT command you have to list the filename for it to work.