I am trying to move a really big txt file from the downloads folder to an SD card. I tried copying the text to the clipboard and pasting it with shift-command v. That didn't work. I wonder if the poor clipboard can't handle that much text. It's a version of the Bible. Is there another way to move the file? Thanks.
Comments
Moving Files
Copy/paste the file itself, not the text; cmd/c the file in Downloads, navigate to your SD card, then cmd/v.
rsync
Having had devices disconnect during backups, I try to use rsync in the terminal for large or incomplete copies.
It should work with
rsync [source file path] [destination path]
If the copy fails part way through you can add "--partial --append" to the command line to make it continue the copy rather than restarting.
moving
Hi. focus on the file; press command c; move focus to your destination; press command v to paste the file (meaning adding a copy of the file to your destination without doing anything to the original file)(, or press option command v to move the file (meaning removing it from where you pressed command c and moving it to where you pressed option command v).