CD ~ puts you in your home folder. The find command gives you the path to the files it finds. Now you know where the files are.
You (more or less) could also do the following:
Code:
cd ~
for f in `find . -name "File.zip" -print`; do
cp $f ~/destinationfolder
done
I'm a little rusty on shell script looping syntax and I'm not in front of my Mac so you'll have to do a little trial and error or googling to get the syntax just right.