How can i add multiple searched from different folders?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2021-02-10
There's no support for this directly. But you can make a regular expression that matches files from multiple directories. For example, this pattern will match anything under C:\Windows or C:\Users:
>^(C:\\Windows\\.*|C:\\Users\\*.)\\.*
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
How can i add multiple searched from different folders?
There's no support for this directly. But you can make a regular expression that matches files from multiple directories. For example, this pattern will match anything under
C:\Windows
orC:\Users
: