We’re Still Here to Help (Even Over the Holidays!) - find out more here.
Forum Discussion
Ted G.
7 years agoCollaborator | Level 8
Can't Drag Files to Dropbox Folder in Catalina
Hello,
In catalina I am no longer able to drag files in finder into the dropbox folder. The selected object just sort of springs back into place and will not enter the Dropbox folder.
Telecaster
6 years agoNew member | Level 2
I tried the suggested command in Terminal
IFS=$'\n'; for path in `python -c $'import os\nimport json\nfor key, value in json.loads(open(os.path.expanduser("~/.dropbox/info.json")).read()).items():\n print value["path"].encode("utf-8")'`; do echo "$path"; xattr -d com.apple.quarantine "$path"; done
My Terminal appears to start up in Bash so I didn't need to use the command to switch to Bash
The problem is fixed. Thank you!
akuma91
6 years agoExplorer | Level 4
I can confirm this works.
If you don't want to change your shell all the time, you can also just paste this into a file (mine was called dropbox-fix.sh):
#!/bin/bash
IFS=$'\n';
for path in `python -c $'import os\nimport json\nfor key, value in json.loads(open(os.path.expanduser("~/.dropbox/info.json")).read()).items():\n print value["path"].encode("utf-8")'`; do
echo "$path";
xattr -d com.apple.quarantine "$path"
doneIt's the same script from before. Save it in your home folder. Go to a terminal and type the following commands:
chmod +x ~/dropbox-fix.sh ~/dropbox-fix.sh
About Create, upload, and share
Find help to solve issues with creating, uploading, and sharing files and folders in Dropbox. Get support and advice from the Dropbox Community.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!