我有以下程序来浏览所有虚拟目录及其子目录和文件(递归地):
static void Main(string[] args)
{
string serverName = Environment.MachineName;
DirectoryEntry dir = new DirectoryEntry("IIS://" + serverName + "/W3SVC/1/ROOT", @"adminusername", @"password");
dir.AuthenticationType = AuthenticationTypes.Secure;
PrintChildren(dir, 0);
}
private static void PrintChildren(DirectoryEntry entry,int level)
{
foreach (DirectoryEntry child in entry.Children)
{
Console.WriteLine("");
Console.WriteLine("|");
for (int i = 0; i < level; i++)
{
Console.Write("----");
}
Console.Write(child.Name);
if (child.Children != null)
{
PrintChildren(child,level + 1);
}
}
}
现在这个程序确实列出了所有的虚拟目录,但只有少数情况下会列出虚拟目录的子目录(我观察过的这些目录在IIS中启用了匿名访问)。
如何确保此程序能够浏览IIS的所有内容?是否有可以提供/设置的其他安全设置?
答案 0 :(得分:0)
我猜你需要给调用者一个正确的DirectoryServicesPermission
来自MSDN:Code Access Security for System.DirectoryServices