The following function will get a list of folders that have specific permissions set if that is what you need. (Warning, it can take a long time to run)
function Get-AclAccess {
param ($folder='.', $outfile='aces.csv')
dir $folder -recurse | Where{$_.PSIsContainer} |
ForEach {get-acl $_.pspath}| ForEach {
$Path=$_.pspath
$_.access | Where {$_.IsInherited -eq $False} |
Add-Member -MemberType noteproperty -name path -value $path -passthru
} | Export-Csv $outfile -Notype
}