Intellij:如何从索引中排除特定类型的文件

发布于 2025-01-22 20:14:44 字数 322 浏览 0 评论 0原文

我正在Android Studio的Android项目。 我的项目使用了很多*。cpp*。hpp文件。 因此,当我打开项目时,Android Studio开始索引*。cpp文件,并变得非常慢。 我在gradle中尝试了此操作:

idea {
    module {
        excludeDirs += file '*.cpp; *.hpp; *.h'
    }
}

但是它不起作用。有没有办法防止特定文件类型的索引在Gradle中索引?

I am working on an android project in Android Studio.
My project uses a lot of *.cpp and *.hpp files.
So when I open my project , Android Studio starts indexing the *.cpp files and becomes very slow.
I tried this in gradle:

idea {
    module {
        excludeDirs += file '*.cpp; *.hpp; *.h'
    }
}

but it is not working. Is there a way to prevent indexing of particular file types from indexing in gradle?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

汹涌人海 2025-01-29 20:14:44

是的,但是它将影响所有项目(因为此设置在IDE范围内)

设置|文件类型|忽略该设置页面底部的文件和文件夹字段。

http://www.jetbrains.com/pycharm/pycharm/webhelp/file-file-types。 html

“在此处输入图像描述”

Yes, but it will affect ALL projects (as this setting is IDE-wide)

Settings | File Types | Ignore files and folders field at the bottom of that setting page.

http://www.jetbrains.com/pycharm/webhelp/file-types.html

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文