IDEA修改系统缓存路径,防止C盘爆满

最近把电脑上以前旧版本的IDEA、PyCharm等编辑器都更新了以下,以前的版本较久了,更新后防止软件用着用着C盘满了,修改了一些缓存路径的配置,记录一下防止自己以后再安装时遗忘。

1 修改配置文件idea.properties

在idea安装路径的bin目录下,打开idea.properties文件:

修改如下配置项:

bash 复制代码
#---------------------------------------------------------------------
# Uncomment this option if you want to customize a path to the settings directory.
#---------------------------------------------------------------------
# idea.config.path=${user.home}/.IntelliJIdea/config
idea.config.path=自定义路径
# 该路径是IDEA的一些配置,比如主题、字体等

#---------------------------------------------------------------------
# Uncomment this option if you want to customize a path to the caches directory.
#---------------------------------------------------------------------
# idea.system.path=${user.home}/.IntelliJIdea/system
idea.system.path=自定义路径
# 该路径是系统缓存和本地历史记录等

#---------------------------------------------------------------------
# Uncomment this option if you want to customize a path to the user-installed plugins directory.
#---------------------------------------------------------------------
# idea.plugins.path=${idea.config.path}/plugins
# 不用修改,默认使用idea.config.path路径,该路径是IDEA下载的插件

#---------------------------------------------------------------------
# Uncomment this option if you want to customize a path to the logs directory.
#---------------------------------------------------------------------
# idea.log.path=${idea.system.path}/log
# 不用修改,默认使用idea.system.path路径,该路径是IDEA的日志文件

修改后,保存并退出。

2 旧数据迁移

IDEA默认把这四个路径的数据保存在C盘,如果想要使用以前的配置数据就需要把C盘的数据迁移到刚刚配置的自定义路径下:

bash 复制代码
# Local路径存储的是系统数据
C:\Users\JohnS\AppData\Local\JetBrains\IntelliJIdea2025.2
# Roaming路径存储的是配置数据
C:\Users\JohnS\AppData\Roaming\JetBrains\IntelliJIdea2025.2

根据自己电脑的用户路径,打开上述路径:

.\Local\JetBrains\IntelliJIdea2025.2路径下的数据移动到idea.system.path定义的路径下;

.\Roaming\JetBrains\IntelliJIdea2025.2路径下的数据移动到idea.config.path定义的路径下。

3 重启IDEA

重新启动IDEA,就可以发现之前IDEA的旧配置成功加载到新的IDEA中了。

相关推荐
aristo_boyunv4 小时前
拦截器和过滤器(理论+实操)
java·数据仓库·hadoop·servlet
半夏陌离4 小时前
SQL 入门指南:排序与分页查询(ORDER BY 多字段排序、LIMIT 分页实战)
java·前端·数据库
CUIYD_19894 小时前
Eclipse 常用搜索功能汇总
java·ide·eclipse
野犬寒鸦5 小时前
力扣hot100:相交链表与反转链表详细思路讲解(160,206)
java·数据结构·后端·算法·leetcode
ytadpole6 小时前
揭秘设计模式:工厂模式的五级进化之路
java·设计模式
计算机毕业设计木哥6 小时前
计算机毕设选题:基于Python+Django的B站数据分析系统的设计与实现【源码+文档+调试】
java·开发语言·后端·python·spark·django·课程设计
失散136 小时前
分布式专题——1.2 Redis7核心数据结构
java·数据结构·redis·分布式·架构
用户3721574261356 小时前
Python 实现 HTML 转 Word 和 PDF
java
a587696 小时前
Java核心概念精讲:TCP与UDP的区别、Java NIO的几个核心组件与HTTP和HTTPS的区别等(46-50)
java·面试·nio