谁能解释一下为什么在进行 IO 操作时会发生此错误?

发布于 2024-10-04 07:44:42 字数 330 浏览 4 评论 0原文

我有一个小型 Windows 应用程序,在此 文章

在此我想压缩一个sample.txt 文件。 但我收到此错误:

“访问路径‘C:\Documents and Settings\hemanth.vemu\Desktop\Compress’被拒绝。”

请帮助我解决这个问题。

I have a small windows app which was given in this article.

In this I want to to compress a sample.txt file.
But am getting this error:

"Access to the path 'C:\Documents and Settings\hemanth.vemu\Desktop\Compress' is denied."

Please help me regarding this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

话少心凉 2024-10-11 07:44:42

它的意思正是它所说的。

运行应用程序的帐户对相关文件夹没有正确的权限。

确保您对正在使用的文件夹具有读/写/创建权限。

It means exactly what it says.

The account that the application is running under does not have the right permissions on the folder in question.

Make sure you have read/write/create permissions on the folder you are working with.

东走西顾 2024-10-11 07:44:42

您需要向 hemanth.vemu 用户提供应用程序身份验证。您可以使用 LogonUser 来执行此操作。它可以验证本地和远程用户。对于本地用户,只需传递计算机名称来代替域即可。

You will need to give your application authentication to the hemanth.vemu user. You can use LogonUser to do this. It can validate both local and remote users. For local users simply pass the machine name in place of the domain.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文