How do I Ignore the build folder in NetBeans 'Find In Projects'? -


anyone know how ignore build folder when doing 'find in projects' on netbeans (v6.9.1).

currently search results pane shows results src folders build folder if project contains lot of jsp files example, many results duplicated...

i think i've figured out how ignore build folder of projects when doing 'find in projects' in netbeans 6.9.1:

  1. go tools->options-miscellaneous.
  2. click files tab.
  3. in files ignored ide, edit ignored files pattern regular expression , include build folder. example, on system added build thus:

    ^(cvs|sccs|vssver.?\.scc|#.*#|%.*%|_svn|build)$|~$|^\.(?!htaccess$).*$ 
  4. click ok save options , close dialog.

(nerd note: took me 1 year day figure out!)


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -