Berry Blue
Berry Blue

Reputation: 16502

Exclude a file from Xcode when searching

Is it possible to exclude files in a project from Xcode when searching? I have some JSON files in my project and Xcode constantly locks up if it finds matches in these files.

Upvotes: 8

Views: 2768

Answers (3)

Fangming
Fangming

Reputation: 25261

Xcode 9 update

Here are examples to search including or excluding file names, file extensions, etc

enter image description here

Upvotes: 3

Andrii Tishchenko
Andrii Tishchenko

Reputation: 1900

I prefere to use regexp. example for excluding unit tests files "foo_unittest.cc" or "foo_test.m"

^.((?!test).)*$

dropdown fields conditions:

  • "File name"
  • "matches regular expression"

Upvotes: 1

rishi
rishi

Reputation: 11839

You can define custom search scope for your search. Custom scope can be define, save, and reuse specific location and file criteria for searches. enter image description here

Now you can add as as many file names as you want. enter image description here

More details on how to use custom search scope can be found here- https://developer.apple.com/Library/ios/recipes/xcode_help-search_navigator/articles/adding_a_search_scope.html

Upvotes: 11

Related Questions