Reputation: 3455
I want to search my soucecode directory for specific texts. When i do so, i want to exclude DLL-Files.
Is there a way to exclude a file instead of listing all filetypes to search?
This example would only search in DLL-Files. I'd like to insert a "NOT" in this filter.
Upvotes: 0
Views: 1345
Reputation: 91428
My Notepad++ version 7.8.5
64-bit supports this notation for filters:
* !*.dll
All files but *.dll
Upvotes: 2