We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
Vincent M.9
10 years agoNew member | Level 1
Can you remove the space in the dropbox folder name ("Dropbox (Company-Name)")?
I'm using my companies business dropbox account. And it created a folder called "Dropbox (my companies name here)".
Is there a way to remove the space between "Dropbox" and "("? I don't want to ha...
- 8 years ago
Hi all,
Unfortunately, it's not possible to change the name of Dropbox folder, as many of you have discovered.
If you are using it for scripts then the best thing would firstly to parse the info.json and grab the path from there. The JSON is located:
Mac/Linux:
~/.dropbox/info.json
Windows will be one of these two paths:
%APPDATA%\Dropbox\info.json
%LOCALAPPDATA%\Dropbox\info.json
I say this as if you were to move your Dropbox folder at anytime then this would, of course, break any paths that explicitly referenced an exact folder path.
On a side note, spaces within file paths shouldn't cause issues within scripts, it's fairly normal to have some spaces in there, just ensure your path string is correctly formatted and your script should be fine.
rwmorris
Helpful | Level 6
Because I have to keep doing this, I'm providing this step-by-step for macOS.
After installing Dropbox through Sydney University business account, it creates a folder called "Dropbox (Sydney Uni)" in my home directory by default, which breaks all my code in shared projects. So I want to rename the default folder to "Dropbox" (I don't have a personal Dropbox account).
After installing Dropbox and once it has finished downloading all my files to the default directory, the blue badges will disappear and be replaced with a green tick on all the completely downloaded files. I can now begin.
1. Quit Dropbox (select the cog in the Dropbox menubar item).
2. In Finder, rename the "Dropbox (Sydney Uni)" folder to "Dropbox"
3. Open Terminal and navigate to your home directory
cd ~
4. Create a symlink to the "Dropbox" folder with the same name as the default Dropbox directory (in my case "Dropbox (Sydney Uni)")
ln -s Dropbox Dropbox\ \(Sydney\ Uni\)
5. Hide the new symlink so you don't have to be reminded of the stupid decisions of the Dropbox development team every day
chflags -h hidden Dropbox\ \(Sydney\ Uni\)
6. Check my work
ls -l drwx------@ 12 rich staff 384 19 Nov 21:10 Dropbox lrwxr-xr-x 1 rich staff 7 19 Nov 21:27 Dropbox (Sydney Uni) -> Dropbox
7. Restart Dropbox. It shouldn't complain about anything since it sees the new symlink as the default folder
cjrhoads
5 years agoHelpful | Level 6
This is a MAJOR issue to me. I teach information technology in the college of business, and I tell my students NEVER to put a space in a folder or filename because it causes SO MANY problems when moving between different operating systems. Why would Dropbox do this? I'm just now deciding upon whether or not to go with Dropbox Business, and this issue decided it for me. I'm not going to do it - because of the stupid space.
- BirthdayGuy5 years agoNew member | Level 2
Wow. I complained about this years ago and it is still a problem? Amazing...
- stoic5 years agoHelpful | Level 5
This is why our entire company is currently moving from Dropbox to MS OneDrive. I'm sure we'll have fresh new annoyances over time, but the level of fail on this particular Dropbox bug is pretty astonishing. Unsubscribing from this thread, it's been real.
- cjrhoads5 years agoHelpful | Level 6
Actually, OneDrive is much much worse. You will be shocked at how poorly OneDrive is implemented, and how many limitations there are. My company keeps encouraging me to use OneDrive, and so I keep trying - but every time I run into yet another "problem" syncing and saving my files with OneDrive, I go back to DropBox, which at least works reliably.
I think the problem is that OneDrive doesn't actually put the files on your physical hard drive and sync them. It tries to use some kind of workaround with a network drive link. This works fine for Microsoft products that are specially programmed to show you that network link so that you can save to it. But some other programs simply won't save to it, or won't open the files that are on it, because there is no way to map a drive letter to it or simply review it in your file listing in Explorer.
About Apps and Installations
Have a question about a Dropbox app or installation? Reach out to the Dropbox Community and get solutions, help, and advice from members.
Need more support
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 or Facebook.
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!