How can I search for folders containing *.txt and *.jpg?
It is not necessary to be only these file types inside the folder.
I want to display only the folders directly containing those file types. If these files are in a subfolder, the folder should not be listed.
Thank you
[Solved] Search for folders containing both *.txt and *.jpg
[Solved] Search for folders containing both *.txt and *.jpg
Last edited by w64bit on Tue Mar 16, 2021 11:34 am, edited 2 times in total.
Re: Search for folders containing *.txt and *.jpg
While not "right", this might be close enough, ?
(There could be false results, like, test.txt.doc & txt [with no extension] & ...)
would work into the equation?
child:.txt | child:.jpg
(There could be false results, like, test.txt.doc & txt [with no extension] & ...)
Not following what you mean by that, but maybeIf these files are in a subfolder, the folder should not be listed.
parents:
Re: Search for folders containing both *.txt and *.jpg
folder1 > folder2 >>> folder3 >>>> folder4 > file4.mp4
......... > file1.txt | > file2.gif | > file3.txt
......... > file1.jpg | > file2.tif | > file3.jpg
......... > file1.png | xxxxxxxx | > file3.avi
folder1 contains folder2 + all files1
folder2 contains folder3 + all files2
folder3 contains folder4 + all files3
folder4 contains file4
the result should be folder1 + folder3
......... > file1.txt | > file2.gif | > file3.txt
......... > file1.jpg | > file2.tif | > file3.jpg
......... > file1.png | xxxxxxxx | > file3.avi
folder1 contains folder2 + all files1
folder2 contains folder3 + all files2
folder3 contains folder4 + all files3
folder4 contains file4
the result should be folder1 + folder3
Last edited by w64bit on Mon Jun 01, 2020 11:23 am, edited 1 time in total.
Re: Search for folders containing *.txt and *.jpg
And @therube's suggestion ( child:*.txt | child:*.jpg ) didn't give you the results you were looking for?
Re: Search for folders containing both *.txt and *.jpg
No. It listed all folders containing only JPG or only TXT.
The scope is to display only the folders containing both JPG and TXT.
The scope is to display only the folders containing both JPG and TXT.
Re: Search for folders containing both *.txt and *.jpg
Please try the following search:
child:*.txt child:*.jpg
child:*.txt child:*.jpg
Re: Search for folders containing both *.txt and *.jpg
Yesss. Thank you very much.
Re: Search for folders containing both *.txt and *.jpg
(Oh, I OR'd it.)