When using the filter similar to the following: dupe:name size:>100MB
Is it possible to filter results so that instead of this:
C:\test1\
C:\test1\test2\
C:\test1\test2\test3\
D:\test3\
you'd only get the children folders? since the "C:\test1\" and "C:\test1\test2\" are showing because they contain only the children folder and just happen to be the same size:
C:\test1\test2\test3\
D:\test3\
only display deepest children folder?
Re: only display deepest children folder?
Not sure I'm following?
Is there a more specific search that you are actually using?
As in, why would C:\test1\, C:\test1\test2\ turn up if they're not matching, dupe:name size:>100MB ?
Are you looking for folders themselves, or only files, or both?
!folder:
Is there a more specific search that you are actually using?
As in, why would C:\test1\, C:\test1\test2\ turn up if they're not matching, dupe:name size:>100MB ?
Are you looking for folders themselves, or only files, or both?
!folder:
Re: only display deepest children folder?
imagine this:
folder size folder name
100MB C:\test1\
100MB C:\test1\test2\
100MB C:\test1\test2\test3
100MB D:\test3\
the reason that "C:\test1\" and "C:\test1\test2\" and "C:\test1\test2\test3" all show 100MB is because "C:\test1\test2\test3" is 100MB
showing the parent folders of "C:\test1\" and "C:\test1\test2\" is redundant
folder size folder name
100MB C:\test1\
100MB C:\test1\test2\
100MB C:\test1\test2\test3
100MB D:\test3\
the reason that "C:\test1\" and "C:\test1\test2\" and "C:\test1\test2\test3" all show 100MB is because "C:\test1\test2\test3" is 100MB
showing the parent folders of "C:\test1\" and "C:\test1\test2\" is redundant
Re: only display deepest children folder?
Please try including the following in your search:
This will find folders where there is at least one file.
This might not give the expected results if your folder has files and subfolders with files.
childfilecount:This will find folders where there is at least one file.
This might not give the expected results if your folder has files and subfolders with files.
Re: only display deepest children folder?
Code: Select all
dupe:name size:>100MB !<child-file-count:0 child-folder-count:1>Re: only display deepest children folder?
This syntax is exactly what I was looking for and worked perfectly! Thank you!!NotNull wrote: Wed Oct 15, 2025 11:17 amCode: Select all
dupe:name size:>100MB !<child-file-count:0 child-folder-count:1>