Intellij:如何从索引中排除特定类型的文件
我正在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,但是它将影响所有项目(因为此设置在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