You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.

Forum Discussion

Stephen G.5's avatar
Stephen G.5
New member | Level 1
10 years ago

How do I rename the root folder?

I recently joined Dropbox for Business on a trial basis. As part of the process, it forcefully renames your Dropbox folder to "Dropbox (Personal)". I have since decided not to use Dropbox for Business. Although I now only have one dropbox folder, it is still called "Dropbox (Personal)" - it did not automatically change back when the accounts were unlinked.

How do I get Dropbox to change the name back?

  • Unlink the DB app from your account, rename the folder, relink the DB app (do not use previous settings when prompted).

  • DaveC2's avatar
    DaveC2
    New member | Level 1

    Symbolic links to a directory doesn't help since OS X file open dialog converts these into the "official" name when you click through the symlink.

    ^

    Thats a complete and total fail on the part of OSX

  • GBatteries E.'s avatar
    GBatteries E.
    New member | Level 1

    Same here - biggest pain with added spaces in the folder name (i.e. existing LabVie .exe files does not allow for it...)

     

    The easiest solution was to create a virtual drive and point to the folder by running cmd:

    C:\>subst b: "C:\Users\Jonathan\Dropbox (Company)"

  • Cody B.6's avatar
    Cody B.6
    New member | Level 1

    I'm having trouble with this issue as well. I'm writing markdown documents in Mou, and I can't point to an image file in dropbox because it can't handle the spaces or parenthesis that are in the name of the root folder. Any word of fixing this?

  • DaveC2's avatar
    DaveC2
    New member | Level 1

    Adi S. : you did it wrong, it worked for me just now.

  • Steve G.61's avatar
    Steve G.61
    Helpful | Level 5

    That works nicely. Thanks.

    I agree about the OS X behavior being wrong.

  • DaveC2's avatar
    DaveC2
    New member | Level 1

    Technically, no, there isn't. Dropbox will always use a space and parenthesis in the name for team accounts. However, see the response from a Dropboxer in the following post for a possible workaround.

    ^

    Will must say that was interesting to find out, and in essence means YES you can rename the folder to ANY name (I just did) as long as you establish a symbolic link folder using the DROPBOX (BIZ NAME) (or personal etc) to point to that location. (I moved and renamed mine)

    I wonder if this is something DB had to work on to perform, IE detect its a symbolic link and follow it, or if the Notification service resolves this to the truepath on enrolling?

  • davidhere40's avatar
    davidhere40
    New member | Level 2

    I have a much better solution. I have over 50GB of data in my dropbox. So even the solution where I reinstall to get the default folder name wasn't acceptable to me. So I found a great work around. Just create a symbolic "hard link". I had never used one before, but it's supported but all windows, linux and mac. Here is how I created the link:

     

    1) Open a cmd prompt as admin. (Search for cmd.exe, right click and then click run as administrator)

    2) Execute: mklink /J "C:\Dropbox" "C:\Dropbox (Personal)"

     

    Now you can use "C:\Dropbox" (or whatever location you decided on) to interact with the same files as if you had typed in C:\Dropbox (Personal). All software and programs will now treat it as if the folder were located there :) The best part is that this solution is easy, fast and doesn't have any downsides.

    • JuhaPalomaki's avatar
      JuhaPalomaki
      Explorer | Level 4

      Trouble is that some development tools do not honor the links. I'm for example working with some Node projects and running into troubles with this. The tools are not using the linked name, instead they figure out the actual path on disk and use that. This is a problem, because some of these tools have problems with the parenthesis and/or spaces in the directory names. 

       

      So far the only thing that only thing that has really worked is the good old subst command. For example:

       

      subst p: "C:\users\juhap\Dropbox (Personal)"\proj

       

      creates another drive P: which ponts directly to the proj folder on my Dropbox. This however is not a perfect solution, since this does not work on the Windows 10 subsystem for Linux. 

       

      I would really appreciate if Dropbox provided a proper solution to this. Would not need to be anything complicated, just some way of setting the actual folder name to whatever user likes.