Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的项目中有一个 xml 文件,应该用于读取操作。当我在本地机器上运行它时,它可以正常工作,但是System.UnauthorizedAccessException: Access to the path 'E:\approot\...当我部署工作角色时它会抛出。
System.UnauthorizedAccessException: Access to the path 'E:\approot\...
我已检查该文件是否存在于该目录中。
我该如何解决这个问题?
谢谢你。
您需要在提升模式下运行角色...通过在 csdef 中添加 < Runtime executionContext ="elevated" />。