idea修改配置檔案路徑導致更新失敗
阿新 • • 發佈:2021-02-11
技術標籤:ideaintellij idea
前段時間為了把配置檔案存放到C盤之外,修改了 D:\workTools\JetBrains\idea\bin\idea.properties 的配置檔案, 把 idea.config.path 和 idea.system.path 兩個引數的路徑設定在idea安裝目錄下,在更新版本是報錯 ,提示Connection Error Failed to prepare an update: Temp directory inside installation: D:\workTools\JetBrains\idea\system\tmp\patch-update這是因為我把 idea.config.path 和 idea.system.path 的路徑配置在D:\workTools\JetBrains\idea裡面,也就是安裝目錄裡面,更新時就會報錯 idea預設安裝配置檔案路徑在C盤,在idea安裝目錄外 windows的預設位置如下: idea.config.path: C:\Users\使用者名稱\AppData\Roaming\JetBrains\IntelliJIdea2020.3 idea.system.path:C:\Users\ 使用者名稱\AppData\Local\JetBrains\ IntelliJIdea2020.3 既然知道是因為路徑問題,那麼只需要把 idea.config.path
idea.config.path=D:/workTools/JetBrains/config/idea_config
idea.system.path=D:/workTools/JetBrains/system/idea_system
idea.plugins.path=${idea.config.path}/plugins
idea.log.path=${idea.system.path}/log