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.
How to search for files in folders with keywords in the middle ?
Re: How to search for files in folders with keywords in the middle ?
Code: Select all
folder:345 child:bc
Code: Select all
*345*\*bc*
Re: How to search for files in folders with keywords in the middle ?
Many thanks~~vanisk wrote: ↑Sat Aug 24, 2019 10:36 amEdit: On second thought, if it looks like 23456\abcde.exe thenCode: Select all
folder:345 child:bc
Code: Select all
*345*\*bc*