I have a custom builder in CDT, which adds alot of files into project directory. I want those files to be filtered out from Project Explorer, but cannot figure out how (the
Firstly thanks to @emmzett Just wanna explain in a verbose mode of emmzett's answer because I didn't know anything editing plugin files and I spent 2 hours on this. Maybe I can save your time with this clarified expression.
plugin.xml open with an editor(notepad,Notepad++ etc) the
plugin.xml filepoint="org.eclipse.ui.navigator.navigatorContent" and paste code below
SpecifyAnIdForYourFileType with a unique name for id
Change "your specific file" with your specific file suffix like *.pdf or desktop.ini etc.plugin.xml and exitplugin.properties open with an editor same as 3.step
Paste this code filters.SpecifyAnIdForYourFileType.name=your specific file files
filters.SpecifyAnIdForYourFileType.description=Hides files that match your specific fileplugin.properties and exitProject Explorer at
the left sideView Menu icon at the top right cornerFilters and Customization...Filters menu.That's all I want to thanks again to emmzett.
Regards.