(1)打开安装路径的属性文件
  我的安装路径是:D:\JetBrains\IntelliJ IDEA 15.0.4,打开路径下的bin文件夹,找到idea.properties文件。
  (2)修改属性配置
  用notepad++或记事本等打开idea.properties文件,找到配置信息中有${user.home}的字段,如idea.config.path,idea.system.path:

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE config folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
# idea.config.path=${user.home}/.IntelliJIdea/config

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE system folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
# idea.system.path=${user.home}/.IntelliJIdea/system

  将${user.home}修改成你想存放的路径,注意去掉字段前面的井号”#”:

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE config folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
idea.config.path=D:/JetBrains/.IntelliJIdea/config

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE system folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
idea.system.path=D:/JetBrains/.IntelliJIdea/system

  (3)查看路径
  如果路径D:/JetBrains出现文件夹.IntelliJIdea,则说明修改成功。

相关文章:

  • 2021-06-25
  • 2021-05-29
  • 2021-08-14
  • 2022-01-01
  • 2022-12-23
  • 2021-09-06
  • 2021-07-30
  • 2021-07-06
猜你喜欢
  • 2021-08-14
  • 2021-11-23
  • 2022-12-23
  • 2022-01-10
  • 2021-12-23
  • 2021-08-14
  • 2021-10-05
相关资源
相似解决方案