Does anybody know a powershell 2.0 command/script to count all folders and subfolders (recursive; no files) in a specific folder ( e.g. the number of all subfolders in C:\folder1\folder2)?
In addition I also need also the number of all “leaf”-folders. in other words, I only want to count folders, which don’t have subolders.
You can use
get-childitem -recurseto get all the files and folders in the current folder.Pipe that into
Where-Objectto filter it to only those files that are containers.As a one-liner: