美文网首页
idea里面html保存不了,intellij idea 不能保

idea里面html保存不了,intellij idea 不能保

作者: 永往直前 | 来源:发表于2021-10-14 20:37 被阅读0次

    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 不能保

          本文链接:https://www.haomeiwen.com/subject/dwzmoltx.html