If you wanna try something a little bit funnier, tar and zip a file, then unzip and untar it in another directory in only one step (this is usefull to keep symlinks unchanged)
tar -cvf - mySelection | gzip -c | (cd myNewDirectory ; gzip -dc | tar xvf -)