Sublime Forum

Search excluding folders that contain partial text

#1

I want to search in files excluding the folders that contain certain text. I know how to Find in files and then I know how to exclude a folder or multiple folders but if I have folders like:

  • add1
  • add2
  • add3

then I wonder what expression I can use to only exclude all the folders that contain the text dd. I tried -/*dd*/ but that did not work.

0 Likes

#2

-*dd*/* should exclude all the files in folders containing dd

0 Likes