Find Directory with CMD Without Full Path – How To

command line

I don't know the full path to a folder, just the folder name. I would like to find everywhere where this folder is using CMD. Is there a command that does this?

I am looking for an equivalent to *nix's:

find . -name <folder name> -type d

Is there anything like that in Windows CMD? I know dir /s …

Best Answer

So at the root of the drive:

dir <Folder Name> /AD /s
Related Question