PowerShell: list NTFS permissions on folder
Same as on the AD permissions post, first bind to the directory, and get its ACL.
$directory = "C:DATA"
$acl = Get-Acl $directory
$acl.psbase.getAccessRules($true, $true, [system.security.principal.NtAccount])