Question Windows Explorer Search ?

koberulz

Distinguished
Dec 12, 2010
135
0
18,580
I want to search in Windows Explorer for .jpg files that contain any string of text, followed by the word "landscape," followed by a space, followed by a dash, followed by any string of text.

If I type this into Windows Explorer, it returns any .jpg file with the word "landscape" in it, even if it's at the end of the filename:
Code:
*landscape -*.jpg

If I type this into Windows Explorer, it returns no results:
Code:
*landscape -*

Is there a way I can do this?
 
I want to search in Windows Explorer for .jpg files that contain any string of text, followed by the word "landscape," followed by a space, followed by a dash, followed by any string of text.

If I type this into Windows Explorer, it returns any .jpg file with the word "landscape" in it, even if it's at the end of the filename:
Code:
*landscape -*.jpg

If I type this into Windows Explorer, it returns no results:
Code:
*landscape -*

Is there a way I can do this?

try
Code:
*??landscape?-*.jpg
 

TRENDING THREADS