在更新到 IntellijIdea 14之后,我发现我的项目中一个被排除的文件夹现在是可见的。
IntellijIdea 14
我该怎么隐藏?
答案很接近,在 Project 齿轮菜单中:
PS: Yes, it's a self-learning post
另外,您可能已经打开了 Show Excluded Files选项。如果是这样,使用 Shift + Shift并键入 除外,做显而易见的事情。
Show Excluded Files
Shift
右键单击要排除的目录,将其标记为已排除, , 然后 取消检查的 Show Excluded Files选项。
1: Intellij IDEA > 偏好。
2: 转到文件类型。
3: 将 * . iml 和 * . idea 添加到此窗口底部的 Ignore files and files 列表框中。
如果希望显示排除的文件而不是隐藏它们,可以调用 Find 操作窗口(例如 Shift+Shift) ,搜索 Show Excluded Files,然后打开或关闭它。有时在 Find 操作窗口中可能没有这个选项(比如我使用的版本2019.3.3) ,但是您仍然可以通过将 <option name="showExcludedFiles" value="true" />添加到 .idea/workspace.xml中的节点来切换它:
Shift+Shift
<option name="showExcludedFiles" value="true" />
.idea/workspace.xml
<component name="ProjectViewState"> ... <option name="showExcludedFiles" value="true" /> </component>
然后重新启动项目窗口。
在创意2022.2.2: 项目视图-> 齿轮图标-> 树木外观-> < em > 显示排除的文件