I know in TC, I can search in sub directory <= X level. But, I want to exclude level 1 and 2, only level 3 or >=3.
Is it possible?
If not, is it possible to make a expand selection in the search result, to only highlight level 3 or >=3?
Thanks in advance!
search in subdirectory certain level
Moderators: Hacker, petermad, Stefan2, white
Hi, shawn. Check this toppic. You should find your answer there.
Windows 10 Pro x64, Windows 11 Pro x64
Re: search in subdirectory certain level
No, but it is possible to use the internal tc plugin to include/exclude absolute folder levels.shawn wrote:I know in TC, I can search in sub directory <= X level. But, I want to exclude level 1 and 2, only level 3 or >=3.
Is it possible?
If not, is it possible to make a expand selection in the search result, to only highlight level 3 or >=3?
To search or mark absolute folder level x use:
Code: Select all
Plugin: tc
Property: path
OP: regex (use operator "regex" to include search results)
OP: !regex (use operator "!regex" to exclude search results)
Value: ^([^\\]*\\){x} (filter folder level x and deeper)
Value: ^([^\\]*\\){x}$ (filter at folder level x and not beyond)
x = 2, means all files and folders in folders in the root of the drive(s)
etc.
Thanks for your help as well!umbra wrote:Hi, shawn. Check this toppic. You should find your answer there.