我在存储文件夹权限方面遇到了一些麻烦。我能够找到一些关于编写和阅读它们的文档。我要做的是阅读特定用户的文件夹权限>存储它>更改权限>安装程序完成后,重新更改权限。
我将其全部关闭(仅由于来自其他许多人的代码)除了如何存储原始文件夹权限并将其设置回来。我很乐意阅读您建议的任何材料,我们会收到软件的几个致命错误,这是解决其中许多错误的一步。欢迎并感谢所有帮助。
以下是我如何设置权限的示例。是的,我知道我有所有人,但现在只是为了测试
public void setPermDir()
{
try
{
string DirectoryName = "C:\\Temp1\\";
Console.WriteLine("Adding access control entry for " + DirectoryName);
// Add the access control entry to the directory.
AddDirectorySecurity(DirectoryName, @"Everyone", FileSystemRights.FullControl, AccessControlType.Allow);
Console.WriteLine("Done.");
}
catch (Exception e)
{
Console.WriteLine(e);
}
Console.ReadLine();
}
// Adds an ACL entry on the specified directory for the specified account.
public static void AddDirectorySecurity(string FileName, string Account, FileSystemRights Rights, AccessControlType ControlType)
{
// Create a new DirectoryInfo object.
DirectoryInfo dInfo = new DirectoryInfo(FileName);
// Get a DirectorySecurity object that represents the
// current security settings.
DirectorySecurity dSecurity = dInfo.GetAccessControl();
// Add the FileSystemAccessRule to the security settings.
dSecurity.AddAccessRule(new FileSystemAccessRule(Account,
Rights,
ControlType));
// Set the new access settings.
dInfo.SetAccessControl(dSecurity);
}
答案 0 :(得分:0)
如果从AddDirectorySecurity返回DirectorySecurity dSecurity,则只需在完成修改后的访问规则后调用Directory.SetAccessControl(directoryName, dSecurity);
即可。
<强>更新强>
如果只是SetAccessControl不起作用,则下一步可能是使用FileSystemSecurity.RemoveAccessRule显式删除您授予的权限。
只需保留对您创建的FileSystemAccessRule的引用:
FileSystemAccessRule toRemoveWhenDone = new FileSystemAccessRule(Account, Rights, ControlType);