find /path/to/folder -mtime +14 -exec rm {} \;
This finds all files within that folder that are older than 14 days, then executes rm on them
find /path/to/folder -mtime +14 -exec rm {} \;
This finds all files within that folder that are older than 14 days, then executes rm on them