我一直在尝试找到一种在目录上存储权限的方法。我目前正在使用SetACL来提供帮助。如果我可以在没有它的情况下更改目录/注册表的所有权,那将是首选,但这是一个不同的故事。一个例子是:
检查该所有者的当前所有者和权限。点击按钮后更改为权限和所有者>单击另一个按钮时将其更改回原始状态。
为了解决原因问题,我的团队提供技术支持。我们远程进入计算机,执行我们的t / s并离开。我们需要能够更改权限然后将其恢复原样。
感谢任何帮助。
答案 0 :(得分:4)
如果您使用System.Management
和System.Management.Instrumentation
命名空间,则可以使用Directory.GetAccessControl
方法获取有权访问文件夹的人员。然后,您可以使用AddAccessRule
和SetAccessControl
方法实际应用新权限。完成后,您可以删除新的权限。这篇文章将指导您如何更改文件夹的权限:
http://www.redmondpie.com/applying-permissions-on-any-windows-folder-using-c/
本作者使用的基本代码如下:
DirectoryInfo myDirectoryInfo = new DirectoryInfo(yourFolderHere);
// Get a DirectorySecurity object that represents the
// current security settings.
DirectorySecurity myDirectorySecurity = myDirectoryInfo.GetAccessControl();
// Builds a new user string for who we want to give permissions to
string User = System.Environment.UserDomainName + "\\" + yourUserName;
// Creates the permissions to apply
myDirectorySecurity.AddAccessRule(new FileSystemAccessRule(User,
FileSystemRights.FullControl, AccessControlType.Allow));
// Set the new access settings.
myDirectoryInfo.SetAccessControl(myDirectorySecurity);
// Showing a Success Message
MessageBox.Show("Permissions Altered Successfully");
}
至于设置所有者,这是一篇关于如何操作的好文章:
C# - How to use DirectorySecurity.SetOwner() ? I'm having troubles
但是,如果您想将所有者设置为其他人(因为我认为当用户已经有权分配所有权权限时,您不需要为用户分配所有权权限),以上方法不会工作我不相信。我找到了关于如何将所有者设置为非自己的人的文档。这是链接:
http://blog.salamandersoft.co.uk/index.php/2009/10/setting-the-owner-of-files-and-directories-in-c/