I'm copying lots of folders from a MBP to an external drive with lots of folders. When I select lots of folders on the MBP and drag them to the external it seems to want to place the folders inside of other folders. Sometimes, depending on how I let go it will place the folders inside of other folders or it will place them outside the folders. How do you copy them so they are not put in the other folders?
Open a terminal.
If you want to see what's going on during the copy. This will copy everything from "folder" in your home directory recursively to an external, mounted, drive called extdrive
rsync -arv /Users/me/folder /Volumes/extdrive
Personally, I would start a log file and wait until the cursor returned then look at the log file to see how it worked or "tail -f" the log file while it was copying so if something happened you still have the information it put out:
rsync -arv /Users/me/folder /Volumes/extdrive > /Users/me/synclogfile.txt &
Advantage of using rsync is if you have to update it later it will only copy the new files and those that have changed. If you just use copy/xcopy or drag and drop it will have to copy every file again.
[doublepost=1502448798][/doublepost]Ohhh, if you want graphical and something that is wonderful should you want to swap out your hard drive to another one (larger or ssd, etc) then:
http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html