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.
chasrmartin
6 years agoHelpful | Level 6
As I am the person who originated this question, do you suppose someone could tell me what the solution is?
- rwmorris5 years agoHelpful | 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
- cjrhoads5 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...
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!