本文介绍了删除所有目录权限的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在 C# (2.0) 中,如何删除对目录的所有权限,以便限制访问.我将向有限的一组用户添加访问权限.
In C# (2.0) How do I remove all permissions to a directory, so I can limit the access. I will be adding access back to a limited set of users.
推荐答案
查看 System.Security.AccessControl 命名空间,尤其是 DirectorySecurity.RemoveAccessRule 方法.
Look at the classes in the System.Security.AccessControl namespace, and especially the DirectorySecurity.RemoveAccessRule method.
此外,如果您删除所有权限,那么您将无法再添加任何权限:-)
Also, if you remove all the permissions then you won't be able to add any back afterwards :-)
这篇关于删除所有目录权限的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!