I want to search a whole drive for folders that are children of other folders (or folders which contain other folders).
(Trying to make this particular drive have no hierarchies more than 1 folder deep).
It seems like the best way to do this is to search for folders that are children of other folders.
but I can't find the correct combination of folder: and child: to make it work.
Help - how?
How to find folders within folders?
Re: How to find folders within folders?
Everything also has the depth: function.
Code: Select all
folder: depth:>1
If you want to get all folders that are 2 levels deep or more compared to a folder - let's say "c:\program files\" - you can use the parent: function: ("!" means NOT)
Code: Select all
folder: !parent:"c:\program files\" "c:\program files\"
You can find more about these functions here.
Re: How to find folders within folders?
Thank you notnull - :depth was the ticket!
Re: How to find folders within folders?
You're welcome
(thanks for your feedback!)
(thanks for your feedback!)