Page 1 of 1

How to search for files in folders with keywords in the middle ?

Posted: Sat Aug 24, 2019 5:48 am
by gwygdd
For example, there are some folers in my computer: 12345, 23456, 34567, 56789, 1357 each contains files such abcd.exe, bcde. txt, cdef.doc

How could I search for files whose name contains "bc" in folers whose name contains "345" ? here "345" may not be at the beginning or end of the folder name.

Many thanks in advance.

Re: How to search for files in folders with keywords in the middle ?

Posted: Sat Aug 24, 2019 10:36 am
by vanisk
gwygdd wrote: Sat Aug 24, 2019 5:48 am How could I search for files whose name contains "bc" in folders whose name contains "345" ?

Code: Select all

folder:345 child:bc
Edit: On second thought, if it looks like 23456\abcde.exe then

Code: Select all

*345*\*bc*

Re: How to search for files in folders with keywords in the middle ?

Posted: Thu Aug 29, 2019 9:40 am
by gwygdd
vanisk wrote: Sat Aug 24, 2019 10:36 am
gwygdd wrote: Sat Aug 24, 2019 5:48 am How could I search for files whose name contains "bc" in folders whose name contains "345" ?

Code: Select all

folder:345 child:bc
Edit: On second thought, if it looks like 23456\abcde.exe then

Code: Select all

*345*\*bc*
Many thanks~~