How to list multiple exclude (and include ?) directories?
A powerful and fast search tool using regular expressions
Brought to you by:
steveking
When I look at the main windows of grepWin then I can see an entry field "Exclude dirs".
Plural means users can enter multiple directories.
How do I do this?
I tried concatenation with commas but without success:
D:\work\proj1,D:\data\logfiles\2017.04\
How does it work otherwise?
Furthermore I am not sure if multiple dirs are allowed in "Search in" entry field.
If not: Could you make it feasible?
It should be rememebered in Preset as well.
Thank you
Thomas
when you hover the mouse pointer over the edit field, you'll see a tooltip showing:
So to exclude proj1 and logfiles, enter
^(proj1|logfiles)$
The tooltip of the direcory name search field says that "|" is the separator.