欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决IDEA占用C盘空间过大的问题

程序员文章站 2022-06-17 18:26:21
笔者最近的c盘空间吃紧,开始亮红色警告了。使用spacesniffer进行磁盘空间占用分析,发现idea不同版本占用空间达到10g之多。这个软件长这样(截止截图时idea工厂设置目录已经被迁移走了,因...

笔者最近的c盘空间吃紧,开始亮红色警告了。使用spacesniffer进行磁盘空间占用分析,发现idea不同版本占用空间达到10g之多。

这个软件长这样(截止截图时idea工厂设置目录已经被迁移走了,因为他会不停监视磁盘空间变换,所以看不到idea工程设置目录了。)

解决IDEA占用C盘空间过大的问题

后来在网上找到一篇文章,找到idea安装目录,修改idea.properties设置如下

idea.config.path=g:/.intellijidea2019.3/config
idea.system.path=g:/.intellijidea2019.3/system
idea.plugins.path=g:/.intellijidea2019.3/plugins
idea.log.path=g:/.intellijidea2019.3/log

补充:清理intellij idea中c盘中的缓存文件

idea在c盘中产生的缓存文件大概800多m,占据了c盘的很大空间,可以把这个东西移到其他盘符下,我的操作是移动到e盘

# path to idea config folder. make sure you're using forward slashes 
idea.config.path=${user.home}/intellijidea/config 
 
# path to idea system folder. make sure you're using forward slashes 
idea.system.path=${user.home}/intellijidea/system 
 
# path to user installed plugins folder. make sure you're using forward slashes 
idea.plugins.path=${user.home}/intellijidea/config/plugins 

原本的配置文件在idea的安装目录下的bin目录下的idea.properties直接打开进行修改成

 idea.config.path=e:/intellijidea/config
 idea.system.path=e:/intellijidea/system
 idea.plugins.path=${idea.config.path}/plugins
 idea.log.path=${idea.system.path}/log

这样重新启动肯定是配重新配置,比较麻烦,直接把在c盘下的文件夹直接拷贝到e盘重新启动idea即可

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。

相关标签: idea C盘 空间