如何转移Pycharm的设置或者缓存到其他盘

因为Pycharm项目缓存C:Userswq.PyCharm2017.2systemcaches下面的content.dat.storageData特别大,占用很多C盘空间,所以我就想办法,把这些设置移动到D盘

在网上找了一下,链接在这里https://intellij-support.jetbrains.com/hc/en-us/articles/207240985,可以实现,大概就是在C:Userswq.PyCharm2017.2config下新建一个idea.properties或者直接在

Pycharm里的Help/Edit Custom Properties的选项下面新建,然后把你的设置都设好:如:

# custom PyCharm properties
idea.config.path=d:/PycharmConfig/idea/caches/trunk-config
idea.system.path=d:/PycharmConfig/idea/caches/trunk-system
idea.plugins.path=d:/PycharmConfig/idea/caches/trunk-plugins
再重启Pycharm就可以了
原文地址:https://www.cnblogs.com/tangmiao/p/10077525.html