I want these files to be shown in the result:
*.mkv
*.mp4
*.avi
And I do not want these files above to be shown, if they are in locations with a folder path containing:
\Dokus\
\Konzerte\
\Konzerte (ess)\
How do I do this?
Show special files not being in locations containing special parts of the path?
Re: Show special files not being in locations containing special parts of the path?
Something along these lines:
Or if you wanted an expanded set of video file types, simply use video: instead of ext:x;y;z.
ext:mkv;mp4;avi !\Dokus\ !\Konzerte\ !\Konzerte (ess)\
Or if you wanted an expanded set of video file types, simply use video: instead of ext:x;y;z.
Re: Show special files not being in locations containing special parts of the path?
OK. This shows nothing, 0 objects. OK, I will try a bit.Something along these lines:
ext:mkv;mp4;avi !\Dokus\ !\Konzerte\ !\Konzerte (ess)\
Ah, yes, that is a good idea!Or if you wanted an expanded set of video file types, simply use video: instead of ext:x;y;z.
Thank you very much!
Re: Show special files not being in locations containing special parts of the path?
Re: Show special files not being in locations containing special parts of the path?
Many thanks!
ext:mkv;mp4;avi !\Dokus\ !\Konzerte\ !"\Konzerte (ess)\"
So a space means "AND"? And a pipe (|) OR?
ext:mkv;mp4;avi !\Dokus\ !\Konzerte\ !"\Konzerte (ess)\"
So a space means "AND"? And a pipe (|) OR?
Re: Show special files not being in locations containing special parts of the path?
Space is AND
but that is NOT an OR (|)
That is a NOT (!)
so !knot does not find "knot".
but that is NOT an OR (|)
That is a NOT (!)
so !knot does not find "knot".
Re: Show special files not being in locations containing special parts of the path?
Correct!
And an exclamation mark (as used here) means NOT. So with 'subtitles':
ext:mkv;mp4;avi !\Dokus\ !\Konzerte\ !"\Konzerte (ess)\"
ext:mkv;mp4;avi Find all files that have a mkv, mp4 or avi extension
!\Dokus\ Limit these results to the ones that do NOT have \Dokus\ in it's path
!\Konzerte\ Limit these results to the ones that do NOT have \Konzerte\ in it's path
!"\Konzerte (ess)\" Limit these results to the ones that do NOT have "\Konzerte (ess)\" in it's path.
On computers, AND gives you less results; OR gives you more results.
For even more confusion, you can read this post
..
Re: Show special files not being in locations containing special parts of the path?
So do not show paths containing:!\Dokus\ Limit these results to the ones that do NOT have \Dokus\ in it's path
!\Konzerte\ Limit these results to the ones that do NOT have \Konzerte\ in it's path
!"\Konzerte (ess)\" Limit these results to the ones that do NOT have "\Konzerte (ess)\" in it's path.
!\Dokus\ AND
!\Konzerte\ AND
!"\Konzerte (ess)\"
My / a thought was this meant the same path must contain everything: Dokus AND Konzerte AND Konzerte (ess). Which would have shown nothing.
What is the difference to this: ext:mkv;mp4;avi !\Dokus\ | !\Konzerte\ | !"\Konzerte (ess)\"? I first thought this was right: Show Dokus OR Konzerts OR Konzerte (ess). So all of them would be shown.
Yes, that's exactly what the two examples above show here. Saw your edition after having written the above. But I assume I somehow do not understand something not yet...but what...?...and thank you for the link.On computers, AND gives you less results; OR gives you more results.
Re: Show special files not being in locations containing special parts of the path?
That is another way to approach this, indeed:
Gather all folders \Dokus\ , \Konzerte\ , "\Konzerte (ess)\" and exclude them all together using !<....>
In Everything this would look like:
Code: Select all
ext:mkv;mp4;avi !<\Dokus\ | \Konzerte\ | "\Konzerte (ess)\">
Re: Show special files not being in locations containing special parts of the path?
So it exactly does the same. OK.
Yes, confusion. But both ones work. So I can use them - are certainly often used / needed such kinds of searches - as a "template".
Thank you very much!
Yes, confusion. But both ones work. So I can use them - are certainly often used / needed such kinds of searches - as a "template".
Thank you very much!