在 Vista 中向用户组授予写入权限?

发布于 2024-09-05 11:00:24 字数 40 浏览 1 评论 0原文

Vista 中是否有任何 API 可以授予“用户”对文件的写权限?

IS there any API that can give 'Users' write permission to a file in Vista?

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

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

发布评论

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

评论(1

桜花祭 2024-09-12 11:00:24

您可能想要修改文件的 ACL。例如,请参阅相关的 Win32 API:SetNamedSecurityInfo

如果所有这些对您来说似乎有点可怕,您可以考虑简单地运行一个调用以下进程:cacls

例如,向目录授予每个人权限:

cacls "directoryPathHere" /e /t /g Everyone:f

有关命令行参数的更多信息,请在命令提示符中键入:

cacls /?

You would want to modify the ACL of the file. For example see related Win32 APIs to: SetNamedSecurityInfo.

If all of that seems a little frightening to you, you can consider simply running a process that calls: cacls

For example giving a directory everyone permission:

cacls "directoryPathHere" /e /t /g Everyone:f

For more information on the command line parameters type in a command prompt:

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