I know how to use GCI. I know how to use it to list directories only, but how can I use it to list directories that have an extension?
I'm guessing it's going to be something along the lines of
gci -Directory | Where-Object {$_.Extension -eq $true }
But that doesn't work.
zarberg@gmail.com