Excluding file types in Eclipse / Aptana find in files search

廉价感情. 提交于 2019-12-02 17:24:26

Try putting an '!' mark in front of the pattern you don't want to match - putting

!*.cgi, !*.pm, !*.sql

in the File name patterns section is doing the job in a test I'm doing with Eclipse 3.4.1 (when the pattern was just * there was a file of each type, with that pattern, it is only returning js and pl files).

I was afraid that it would be a bit naive with the patterns and just allow anything that matched one of them to succeed (ie an sql file would match !*.cgi), but this doesn't seem to be the case.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!