What seems to be working for me is:find -type f -name "logins.json" -exec cp --target-directory=/mnt/ramdisk/FX_Test --parents -a -u -v "{}" \;
'find' finds the files, then copies with a tree-path ("--parents"). -a saves the dates, -u updates only if newer source file exists.