C#擷取IIS所有網站及虛擬目錄和應用程式(包含名稱及詳細資料)

來源:互聯網
上載者:User

標籤:services   bool   window   擷取   ica   webserver   ***   roo   service   

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.DirectoryServices;using System.Diagnostics;namespace WindowsFormsApplication13{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        void ShowEntry(DirectoryEntry entry)        {            foreach (DirectoryEntry childEntry in entry.Children)            {                if (childEntry.SchemaClassName == "IIsWebServer")                {                    Debug.Print(childEntry.SchemaClassName + ":" + childEntry.Properties["ServerComment"].Value.ToString());                    Debug.Print("*********************Start*************************");                    foreach (var name in childEntry.Properties.PropertyNames)                    {                        Debug.Print(name + ":" + childEntry.Properties[name.ToString()].Value);                    }                    Debug.Print("*********************End*************************");                }                else if (childEntry.SchemaClassName == "IIsWebVirtualDir")                {                    Debug.Print(childEntry.SchemaClassName + ":" + childEntry.Name);                    Debug.Print("*********************Start*************************");                    foreach (var name in childEntry.Properties.PropertyNames)                    {                        Debug.Print(name + ":" + childEntry.Properties[name.ToString()].Value);                    }                    Debug.Print("*********************End*************************");                }                else                {                    //Debug.Print(childEntry.SchemaClassName);                }                ShowEntry(childEntry);            }        }        private void Form1_Load(object sender, EventArgs e)        {            ShowEntry(new DirectoryEntry("IIS://localhost/w3svc"));        }    }}

 擷取IIS樹型目錄:

public class SiteInfo        {            public string Name { get; set; }            public string Path { get; set; }            public bool IsApp { get; set; }            public List<SiteInfo> Children { get; set; }        }        List<SiteInfo> getSiteList(DirectoryEntry entry)        {            var result = new List<SiteInfo>();            foreach (DirectoryEntry childEntry in entry.Children)            {                var sites = getSiteList(childEntry);                if (childEntry.SchemaClassName == "IIsWebServer")                {                    var site = new SiteInfo();                    site.Name = childEntry.Properties["ServerComment"].Value.ToString();                    site.Path = sites[0].Path;                    site.IsApp = true;                    site.Children = new List<SiteInfo>();                    foreach (var subSite in sites[0].Children)                        site.Children.Add(subSite);                    result.Add(site);                }                else if (childEntry.SchemaClassName == "IIsWebVirtualDir")                {                    var site = new SiteInfo();                    site.Name = childEntry.Name;                    site.Path = childEntry.Properties["Path"].Value.ToString();                    site.Children = sites;                    if (childEntry.Properties.Contains("AppRoot")                        && childEntry.Properties["AppRoot"].Value != null                        && !string.IsNullOrEmpty(childEntry.Properties["AppRoot"].Value.ToString()))                        site.IsApp = true;                    result.Add(site);                }            }            return result;        }

 

C#擷取IIS所有網站及虛擬目錄和應用程式(包含名稱及詳細資料)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.