Vista 中文件夹的安全权限(使用 C# 应用程序)
我已经在 winforms 中编写了一段代码,并将该代码添加到了安装应用程序中。 (该代码实际上是在应用程序目录中创建文件)
当我尝试在 vista 中运行该应用程序时,它无法工作,因为文件创建权限。如果我手动启用应用程序文件夹的权限,它工作正常。
如何使用 C# 为我的应用程序文件夹分配权限?
I've written a code in winforms and added this code to a setup application.
(That code is actually to create files in application directory)
When I try to run the application in vista it is not working because the file creation permission. If I manually enable the permissions to application folder it is working fine.
How can I assign permissions to my applications folder using c#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您想首先检查一下您是否以管理员身份运行?或者检查您的UAC帐户是否开启。
另请注意,如果您在访客模式下运行,则无法创建文件。
Maybe you would like to check whether you are running as administrator or not in the first place? Or check whether you have your UAC account turn on.
Also note that there is no way to create a file if you are running under guest mode.