How can i exclude certain files?
Hi,
I would like to hide some generated files in IntelliJs project view. When I generate my Java Files I also generate some *._trace files for mapping purposes. It would be great if these didnt show up in the Project view and only the generated Java files are visible.
Best
Sven
Please sign in to leave a comment.
Hello,
Please check this thread - http://devnet.jetbrains.com/message/5480811?tstart=0
Denis
i meant programmatically from within my plugin i add to intellij.
can i change the configuration over my plugins plugin.xml with some configuration parameter?
You can use FileTypeManager.setIgnoredFilesList() for that.
Denis
FileTypeManager.setIgnoredFilesList() indicates that it sets a list of files to ignore in the project structure.
I don't want to ignore a whole list of files, my files are .xml, actually .meta.xml but I just want to ignore specific file types that are within specific source directories of my module. I have a custom module I wrote, how do I ignore files only within it?