gpt4 book ai didi

c# - 如何设置对目录的完全控制?

转载 作者:太空狗 更新时间:2023-10-29 18:30:24 28 4
gpt4 key购买 nike

我正在使用以下简单代码来添加对目录的完全控制,但它不起作用。

        String dir_name = @"folder_full_path";
DirectorySecurity dir_security = Directory.GetAccessControl(dir_name);
FileSystemAccessRule access_rule = new FileSystemAccessRule(@"AccountName",
FileSystemRights.FullControl, AccessControlType.Allow);
dSecurity.AddAccessRule(access_rule);
Directory.SetAccessControl(dir_name, dir_security);

但是这段代码只对目标文件夹设置了特殊权限。此代码几乎与 MSDN sample 相同.我正在绞尽脑汁寻求一个合理的解释...希望有人能对我有所启发。

非常感谢。

最佳答案

在对原始 ACL 规则进行一些逆向工程后,我让它可以使用以下代码:

IdentityReference everybodyIdentity = new SecurityIdentifier(WellKnownSidType.WorldSid, null);

FileSystemAccessRule rule = new FileSystemAccessRule(
everybodyIdentity,
FileSystemRights.FullControl,
InheritanceFlags.ContainerInherit | InheritanceFlags.ObjectInherit,
PropagationFlags.None,
AccessControlType.Allow);

希望它能帮助任何进一步的访问者:)

关于c# - 如何设置对目录的完全控制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2798111/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com