hi! i'm on vanilla arch linux. i'm currently pretty new to linux so i'm quite unfamiliar with the quirks of day-to-day operation - so i'm currently in the process of moving backed up files off of an external exfat hdd to my local btrfs drives. i used rsync -rtP external/folder /folder to transfer the files in two of my four drives, but i noticed that rsync only preserves modification date, not creation date. i've read online that cp or touch can maintain that creation time metadata...
what should i do to 1. maintain the creation and modification time metadata in the 2 remaining drives i need to copy?
and 2. update the already-copied existing files on my drive with the correct metadata from the external drive's versions of the files? is there a command that can run touch to iterate on each filename and update them one by one? or is cp the more efficient command for copying files between my external and my local filesystem and i messed up from the beginning by using rsync, and copying both creation and modification time is possible?
thank you so much for your help!