在 Vista 中向用户组授予写入权限?
Vista 中是否有任何 API 可以授予“用户”对文件的写权限?
IS there any API that can give 'Users' write permission to a file in Vista?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Vista 中是否有任何 API 可以授予“用户”对文件的写权限?
IS there any API that can give 'Users' write permission to a file in Vista?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可能想要修改文件的 ACL。例如,请参阅相关的 Win32 API:SetNamedSecurityInfo 。
如果所有这些对您来说似乎有点可怕,您可以考虑简单地运行一个调用以下进程:
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:
For more information on the command line parameters type in a command prompt: