Show only folders in one hierarchy level having the 4 same first characters in its folder names?
Show only folders in one hierarchy level having the 4 same first characters in its folder names?
Is there a way to show only the folders in one hierarchy level having the 4 same first characters in its folder names?
Re: Show only folders in one hierarchy level having the 4 same first characters in its folder names?
folder: depth:3 regex:^(.{4}) dupe:1folder: == folders only.
depth: == limit to a specific folder depth.
regex: == enable regular expressions
^ == match start of filename.
( ) == capture the match into regmatch1.
.{4} == match any character 4 times.
dupe:1 == list only duplicated regmatch1
Re: Show only folders in one hierarchy level having the 4 same first characters in its folder names?
Thank you very much! Works great!
This is the depth always from the root folder? Independently of what folder is marked? Could one use an expression that counts the depth from the folder selected?depth: == limit to a specific folder depth.
Re: Show only folders in one hierarchy level having the 4 same first characters in its folder names?
Yes.This is the depth always from the root folder?
Independently of what folder is marked?
Everything doesn't perform searches based on the current selection.Could one use an expression that counts the depth from the folder selected?
Re: Show only folders in one hierarchy level having the 4 same first characters in its folder names?
Ah, okey, doesn’t matter at all, works great in any case.
Many thanks!
Many thanks!