Setup
Sync Your Mac’s Downloads Folder with iCloud Drive
Tired of your Mac’s Downloads folder not syncing with iCloud Drive? Learn how to seamlessly sync your Downloads across all your Apple devices - Mac, iPhone, and iPad - using a simple symlink trick. Step-by-step guide.
Wolfgang Rittner
updated September 13, 2025 · 4 min read
ℹ️ Compatibility: Works on macOS Tahoe, Sequoia, Sonoma, and likely all other versions supporting iCloud Drive.
The Problem
The Downloads folder is my temporary workspace—where reports, tickets, and random files land. But here’s the catch: while Documents and Desktop sync seamlessly with iCloud Drive, Downloads doesn’t.
Ever searched for a file on your phone, only to realize it’s stuck on your Mac? Or downloaded a ticket on your iPad, but can’t find it on your computer? Frustrating, right.
The Fix
By default, macOS keeps your ~/Downloads
folder local. But iCloud Drive does have its own Downloads folder—it’s just hidden in a different spot. Let’s bridge the gap and sync them.
⚠️ Warning: Some users report this may affect AirDrop. Tested and working on Tahoe and earlier macOS versions, but your mileage may vary.
Step 1: (Optional) Preserve the Downloads Folder Icon
If you want to try preserving the classic Downloads folder icon for the new folder (though it won’t restore the special Finder sidebar icon):
- Open Finder and right-click Downloads in the Favorites sidebar. Select Get Info.
- Open Get Info for a new folder (e.g., create a temporary folder on your Desktop).
- In the original Downloads folder’s info window, click the icon in the preview section (not the tiny top-left icon).
- Drag that icon onto the tiny top-left icon in the new folder’s info window.
Step 2: Replace Your Local Downloads Folder
Delete the old Downloads folder (back up files first!):
bashsudo rm -rf ~/Downloads
Enter your login password when prompted.Remove the old Downloads from the Dock by dragging it out.
Create a symlink to the iCloud Drive Downloads folder in place of the local Downloads folder you just deleted:
bashln -s ~/Library/Mobile\ Documents/com\~apple\~CloudDocs/Downloads ~/Downloads
Restart Finder by holding down the Option (⌥) key, right-clicking the Finder icon in the Dock, and selecting Relaunch.
Add the new Downloads folder to the Dock:
- Open iCloud Drive in Finder.
- Drag the Downloads folder to the Dock (where the old Downloads folder was).
Add the new Downloads folder to the Finder sidebar:
- Open Finder.
- Go to Finder > Settings in the menu bar.
- Select the Sidebar tab.
- Under Favorites, check the box next to Downloads.
Step 3: (Optional) Apply the Preserved Icon
- Open Finder and right-click the new Downloads folder (now synced with iCloud Drive) in the Favorites sidebar. Select Get Info.
- Open Get Info for the temporary folder where you saved the original icon.
- In the temporary folder’s info window, click the icon in the preview section.
- Drag that icon onto the tiny top-left icon in the new Downloads folder’s info window.
- Close both info windows and delete the temporary folder.
⚠️ Note: The custom icon will apply to the folder itself, but the special Downloads icon in the Finder sidebar will not return. The folder will appear as a regular folder.
Done!
Now, anything you download on your Mac, iPhone, or iPad will appear in the same place—everywhere. 🎉
FAQ
Q: Will this break AirDrop?
A: Some users report issues, but it works fine for me on Tahoe. Proceed with caution.
Q: What if I already have files in both folders?
A: Merge them manually before deleting the local folder, or back up first.
Q: Can I undo this?
A: Yes, mostly! Delete the symlink (rm ~/Downloads
) and recreate the local folder. Restart Finder or log out and log back in. However, the original Downloads folder icon won’t be restored unless you preserved it using the optional steps above.