I had a question about how to search for files of a certain type where the keyword that we want is in the path of the file, and not in the filename itself. I know how to put extensions and a string that I wish to find in the file name, such as:
File name: *.mp3;*.wav;*.flac:beatles
and it will give me the results for files such as:
The Beatles song 1.mp3
beatles song 2.wav
etc.
but when you have several folders containing files called track01.mp3 and track02.mp3 and the only way to distinguish is the name of the folder like
.../The Beatles/track01.mp3
.../Beethoven/track01.mp3
How can I write the search field to say that my key word criteria is within the path and not in the file name?