intellij idea 不能保存项目

时间:2022-12-03 22:36:51

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.

错误理解:

没有权限

解决办法:

cmd命令窗口中输入

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

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

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

  + 设置属性。
- 清除属性。
r 只读文件属性。
a 存档文件属性。
s 系统文件属性。
h 隐藏文件属性。

例如project项目

attrib -r +s E:\\project

attrib -r +s E:\\project\*

执行命令后重启intellij编辑器


解决结果:

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