zoukankan      html  css  js  c++  java
  • 安装IntelliJ IDEA默认C盘文件过大怎么办

    方法如下:

    找到安装路径下有个属性文件,我的是在 D:Program FilesJetBrainsIntelliJ IDEA 2017.3.2in 进入bin目录后找到属性文件:idea.properties 用记事本或者Editplus 将其打开,找到如下代码段:

    [html] 
     
    1. # path to IDEA config folder. Make sure you're using forward slashes  
    2. idea.config.path=${user.home}/.IntelliJIdea/config  
    3.   
    4. # path to IDEA system folder. Make sure you're using forward slashes  
    5. idea.system.path=${user.home}/.IntelliJIdea/system  
    6.   
    7. # path to user installed plugins folder. Make sure you're using forward slashes  
    8. idea.plugins.path=${user.home}/.IntelliJIdea/config/plugins  

    发现其中包含3个路径 idea.config.path和idea.system.path和idea.plugins.path   这个就是设置了文件的存放路径,那么我们将 ${user.home} 替换为我们自定义的路径就好了,替换 如:D:Program FilesJetBrainsIntelliJ IDEA 2017.3.2 ,注意“/”的方向。修改后的如下:

    [html] 
     
    1. # path to IDEA config folder. Make sure you're using forward slashes  
    2. idea.config.path=D:/Program Files/JetBrains/IntelliJ IDEA 2017.3.2/.IntelliJIdea/config  
    3.   
    4. # path to IDEA system folder. Make sure you're using forward slashes  
    5. idea.system.path=D:/Program Files/JetBrains/IntelliJ IDEA 2017.3.2/.IntelliJIdea/system  
    6.   
    7. # path to user installed plugins folder. Make sure you're using forward slashes  
    8. idea.plugins.path=D:/Program Files/JetBrains/IntelliJ IDEA 2017.3.2/.IntelliJIdea/config/plugins  


     

    然后发现D:/Program Files/JetBrains/IntelliJ IDEA 2017.3.2 路径下出现了 .IntelliJIdea的文件夹,修改成功!以后在使用时就不会占用C盘啦,C盘C:UsersAdministrator.IntelliJIdea90 的文件夹就可以删除了。快去试试吧!

  • 相关阅读:
    memory runs at single channel问题解决
    ASP php获取文件URL地址等方法
    zencart的modules下数据库操作templates排版和common首页引用
    php生成html 伪静态??
    Linux服务器自动备份压缩MySQL数据库的实用方法
    dos 命令集
    Zencart 500错误查找和解决方法
    破解JS加密:url unicode加密而已
    .htaccess 保护文件夹
    TCP 的那些事儿(上)
  • 原文地址:https://www.cnblogs.com/yulia/p/8862377.html
Copyright © 2011-2022 走看看