在 IntelliJ IDEA 中隐藏从树中排除的文件夹

在更新到 IntellijIdea 14之后,我发现我的项目中一个被排除的文件夹现在是可见的。

Image of intelliJ folder structure with hidden folder visable

我该怎么隐藏?

33147 次浏览

答案很接近,在 Project 齿轮菜单中: enter image description here

PS: Yes, it's a self-learning post

另外,您可能已经打开了 Show Excluded Files选项。如果是这样,使用 Shift + Shift并键入 除外,做显而易见的事情。 show excluded files toggle

右键单击要排除的目录,将其标记为已排除, enter image description here, 然后 取消检查Show Excluded Files选项。 enter image description here

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中的节点来切换它:

<component name="ProjectViewState">
...
<option name="showExcludedFiles" value="true" />
</component>

然后重新启动项目窗口。

在创意2022.2.2: 项目视图-> 齿轮图标-> 树木外观-> < em > 显示排除的文件 enter image description here