How can I tell IntelliJ's “Find in Files” to ignore generated files?

前端 未结 4 1435
天涯浪人
天涯浪人 2021-01-30 15:36

I need to do a find in files. I want to ignore or exclude generated files, like JAX-WS artifacts or classes in target folders. How can I tell IDEA to exclude these files from th

4条回答
  •  猫巷女王i
    2021-01-30 16:20

    I use the next pattern to exclude generated files

    !file:*intermediates*/&&!file:*generated*/&&!lib:*..*

    [How to add a new pattern follow]

提交回复
热议问题