IntelliJ IDEAでIntelliJIdea転送操作


IntelliJ IDEAをインストールすると、システムUserディレクトリの下にフォルダが生成されます.私のインストールは12バージョンなので、フォルダ名が生成されます.IntelliJIdea 12にはconfig、systemフォルダがあり、いくつかの構成情報とプロジェクトのデバッグ内容がここにあるので、このフォルダはますます大きくなります.ソフトウェアインストールディレクトリのbinディレクトリの下のideaを変更できます.propertiesファイルを転送します.
ideaを開くpropertiesでは、次のことがわかります.
#---------------------------------------------------------------------
# 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
#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to user installed plugins folder. Make sure you're using forward slashes
#---------------------------------------------------------------------
 idea.plugins.path=${user.home}/.IntelliJIdea/config/plugins
#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE logs folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
idea.log.path=${user.home}/.IntelliJIdea/system/log

各パスを変更すればいいです.