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?
Folder inside folders
Re: Folder inside folders
(In "Everything" version 1.2.1.451a) filter on Folder, search for !\somehow\.
I believe that will do what you want.
I believe that will do what you want.
Re: Folder inside folders
what do u mean filter?therube wrote:(In "Everything" version 1.2.1.451a) filter on Folder, search for !\somehow\.
I believe that will do what you want.
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 )
Re: Folder inside folders
View | Toolbars -> Filter Barwhat do u mean filter?
Re: Folder inside folders
nope..it still lists those folders who have that folder inside.