Folder inside folders

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
HouseX
Posts: 20
Joined: Mon Aug 23, 2010 2:35 pm

Folder inside folders

Post by HouseX »

Ok i dont know if thats mentioned somewhere..

lets say i have 100 folders in a drive and in 50 folders(i dont know how many) there is a folder inside of them called "Somehow" so i wanna list all those folders which dont have the folder "Somehow"

How can i do that?

i do !/Somehow but then it lists the parent folders too and other inside folders except "Somehow" folders which is something i dont want.

i just wanna list all the parent folders which dont have the "Somehow" folder inside

is there a way to do it?
therube
Posts: 4640
Joined: Thu Sep 03, 2009 6:48 pm

Re: Folder inside folders

Post by therube »

(In "Everything" version 1.2.1.451a) filter on Folder, search for !\somehow\.

I believe that will do what you want.
HouseX
Posts: 20
Joined: Mon Aug 23, 2010 2:35 pm

Re: Folder inside folders

Post by HouseX »

therube wrote:(In "Everything" version 1.2.1.451a) filter on Folder, search for !\somehow\.

I believe that will do what you want.
what do u mean filter?

i found a command line which does what i want..maybe u can understand from this

Code: Select all

for /d %d in (*-*) do IF NOT EXIST %d\Somehow ( echo %d >> somehow.txt )
therube
Posts: 4640
Joined: Thu Sep 03, 2009 6:48 pm

Re: Folder inside folders

Post by therube »

what do u mean filter?
View | Toolbars -> Filter Bar
HouseX
Posts: 20
Joined: Mon Aug 23, 2010 2:35 pm

Re: Folder inside folders

Post by HouseX »

nope..it still lists those folders who have that folder inside.
Post Reply