I'd like to exclude certain folders (and all their subfolders) from searching within Eclipse, is this possible?

Thanks, Don

link|improve this question

48% accept rate
feedback

3 Answers

up vote 53 down vote accepted

The quick and dirty way:

Right click on a folder, go to properties, and mark a folder as derived. Derived entities are excluded from searching by default.

The safe way:

Create a working set including only those entities you want searched and search only within that working set. See Dave Ray's answer for details on this procedure.

link|improve this answer
1  
Like Dave noted in his answer: setting things that are not really derived to be derived might cause problems. Like when using Maven to create a distribution. – Arjan Jan 12 '10 at 8:40
feedback

Here is what works for me (I'm using Helios - maybe this way was not available when this question was originally asked?)

  • Go to Project -> Properties -> Resource Filters.
  • Click Add.
  • Choose Filter type: Exclude all
  • Choose Applies to: Folders; check All children (recursive).
  • In the Attributes, choose Name, Matches, .svn (for example).

(Actually, I'm using .* to filter out .svn, .hg etc. in one go.)

After okay'ing the project properties dialog, these directories won't come up in search any more. In fact, Eclipse is so kind as to automatically update existing search results windows and remove all matches which are now filtered out.

link|improve this answer
7  
For latest versions of Eclipse as of 2011 (Helios & Indigo), this should be the accepted answer and the easiest way to do it. – András Szepesházi Nov 7 '11 at 22:22
3  
As this can only be applied to one project at a time, it's really not a gain over marking folders derived... and depending on how many times you need to type in the filters, it could take longer. – egid Jan 10 at 22:17
When using this method, be sure to also clear your search history (using the flashlight-with-a-down-arrow button in the search panel) after adding the resource filter. Otherwise you won't save any search time, and you'll get .git/.../filename.file doesn't exist errors because the search cache (I think?) still considers the .git folder to be a valid place to look. – CoreDumpError May 10 at 0:33
feedback

I could imagine that marking resources derived might cause problems in other areas. Instead, create a working set with the folders you want to include in the search:

  • Open Search dialog (ctrl+h)
  • Change search scope to Working Set
  • Click Choose ...
  • Click New to create a new Working Set with the what you want searched (or Add All and then remove the ones you want filtered
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.