idea里面html保存不了,intellij idea 不能保存项目,报错解决办法

intellij idea 不能保存项目,报错

错误信息:弹出提示框,控制台输出

Could not save project!: Unable to save project files. Please ensure project files are writable and you have permissions to modify them. Try to save project again.

错误理解:

没有权限

解决思路:通过https://youtrack.jetbrains.com/issue/IDEA-90978文章找到解决信息

cmd命令窗口中输入

attrib -r +s F:\项目根目录文件

attrib -r +s F:\项目根目录文件*

attrib -r +s 命令含义:设置系统清除只读属性

  • 设置属性。
  • 清除属性。

r 只读文件属性。

a 存档文件属性。

s 系统文件属性。

h 隐藏文件属性。

例如project项目

attrib -r +s F:\project

attrib -r +s F:\project*

解决结果:

到此,ctrl+S保存项目保存问题解决,关闭intellij idea 保存项目报错问题解决

你可能感兴趣的:(idea里面html保存不了,intellij idea 不能保存项目,报错解决办法)