Table of Contents
This practical guide walks through how to copy files from Mac to USB, explains the main requirements, and highlights common issues that may appear along the way.
Steps to change USB drive format:
Open Finder in your system, then choose Applications> Utilities> Disk Utility .

Select the USB drive on the left side.

Then click the Erase button in the top right corner of the screen. Select ExFAT in the format drop-down list and start reformatting the drive.

After the drive format is complete, you can copy files from macOS to USB normally.
How to copy files from macOS to a USB drive using the command line
Open a Terminal window and run the following command:
cp -R Documents /usb
-R will copy all the subfolders in the Documents folder to the USB external hard drive.
However the above command may give an error message like:
usb/Pics: No such file or directory.
This is because the USB external hard drive is mounted in the / Volumes folder, so you should add the / Volumes directory before the name of the USB disk when you run the cp command.
cp -R Documents /Volumes/usb-name
Key Takeaways
Use the information above as a practical reference for how to copy files from Mac to USB. Review each step carefully, confirm any requirements, and choose the option that best fits your situation.
FAQ
What does this guide explain about Copy Files from Mac to USB?
It explains the main concepts, practical considerations, and useful steps related to copy files from Mac to USB without requiring advanced knowledge.
Who can benefit from learning about Copy Files from Mac to USB?
This information is useful for readers who want a clear overview, practical guidance, and reliable steps related to copy files from Mac to USB.
What should I check before applying this information?
Review the requirements, confirm that your device, software, or situation matches the instructions, and back up important data before making major changes.
Reader Comments 0
Sign in with email or Google to join the discussion.