Nov 22 2018 11:23 AM
Is there a way to get the count of all the files, folders under a particular folder using PowerShell command?
Nov 22 2018 11:47 PM
Yes, simply use the -Recurse parameter? For example:
(dir D:\Downloads\ -Recurse).Count dir . -Recurse | measure