To check and provide the ACL of a folder/file you can use below DOS command or the Powershell Cmdlet. To know more about ACL read this : http://en.wikipedia.org/wiki/Access_control_list
DOS
to provide permission to the user MY SERVICE Account
cacls "D:\BRCode" /T /C /E /G "MY SERVICE Account":F
to know what are the permissions are there
cacls "D:\BRCode"
Also you can try Icacls command for the same
PowerShell
$FldrAcl = Get-Acl D:\BRCode | Format-List set-acl -path D:\BRCode -AclObject $FldrAcl