我找到了一些代码,展示了如何获取给定域中的用户列表。但我希望从一个文件夹中获取名称。我的搜索并没有让我走得太远。以下是我正在寻找的列表示例。
由于
答案 0 :(得分:4)
我不完全确定你打算用上面的列表做什么,但你基本上可以做的是获取目标目录的权限属性。您基本上可以查询,如下所示:
// Variables:
string folderPath = "";
DirectoryInfo dirInfo = null;
DirectorySecurity dirSec = null;
int i = 0;
try
{
// Read our Directory Path.
do
{
Console.Write("Enter directory... ");
folderPath = Console.ReadLine();
}
while (!Directory.Exists(folderPath));
// Obtain our Access Control List (ACL)
dirInfo = new DirectoryInfo(folderPath);
dirSec = dirInfo.GetAccessControl();
// Show the results.
foreach (FileSystemAccessRule rule in dirSec.GetAccessRules(true, true, typeof(NTAccount)))
{
Console.WriteLine("[{0}] - Rule {1} {2} access to {3}",
i++,
rule.AccessControlType == AccessControlType.Allow ? "grants" : "denies",
rule.FileSystemRights,
rule.IdentityReference.ToString());
}
}
catch (Exception ex)
{
Console.Write("Exception: ");
Console.WriteLIne(ex.Message);
}
Console.WriteLine(Environment.NewLine + "...");
Console.ReadKey(true);
这是查询目录以获取其权限级别的一个非常基本的示例。您会注意到它还会显示所有与相关联的帐户。这应该编译,并且基本上会向目录显示帐户关联。
我不确定这是不是你问的问题 - 希望这会有所帮助。