0 votes

An example - I would like to search for all files containing a 'q' in the filename portion, that has a directory path with 'temp' found somewhere in the path. Such as:

\somedir\sometempdir\someqdata.txt

Is it possible to search for this in the filename box? If not, is there another way to achieve it?

Thank you.

by (20 points)

1 Answer

0 votes

Yes, you would do something like:

File name:       q
Containing Text:
Look In:         C:\;+temp

The +temp says that the path must have 'temp' somewhere in it.

Conversely you could do -temp to say that it must NOT have 'temp' in the path.

by (29.5k points)
...