How to force IntelliJ to use a different home folder

前端 未结 3 949
梦如初夏
梦如初夏 2021-02-09 17:29

I have a computer with two hard drives. In the first one, an SSD disk, I have Windows partition (C) and on the second one (D), a raid volume, I install all the programs. I also

相关标签:
3条回答
  • 2021-02-09 17:54

    Not 100% sure if this can be a solution, you can change the HOME folder of Intellij IDEA. Look for the folder where the idea executable is. In Linux I have on

     ~/applications/idea13/bin  
    

    On Windows you can check the properties of the menu item. There should be file idea.properties that contains the home folder location of the idea files.

    You can find more information here that describe more details:

    Locations can be changed by editing the following file: IDE_HOME\bin\idea.properties

    Follow the comments in idea.properties file to change the defaults, make sure to un-comment the lines defining these properties: idea.config.path idea.system.path idea.plugins.path idea.log.path

    On the other hand you can change the location of your project to D:/Users/David. you should also have a look inside the project folder, there should be a .idea folder with has a library directory. They contains the location of the libs used in the project with their paths.

    0 讨论(0)
  • 2021-02-09 18:03

    As dawez allready answered, you should edit idea.properties to set config, system, plugins and log paths.

    But if you want to change the user.home path, then you must edit idea.exe.vmoptions file. Just add the following at the end of the file:

    -Duser.home=your_new_user_home_path
    

    If you use idea64.exe then you should edit idea64.exe.vmoptions file.

    0 讨论(0)
  • 2021-02-09 18:03

    JetBrains had added complete set of features to support such a case and this is described here:

    Changing IDE default directories used for config, plugins, and caches storage

    0 讨论(0)
提交回复
热议问题