程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#中操作IIS 7.0(4)

C#中操作IIS 7.0(4)

編輯:關於C語言

檢查虛擬目錄是否存在。

VerifyVirtualPathIsExist public static bool VerifyVirtualPathIsExist(string siteName, string path)
{
    using (ServerManager mgr = new ServerManager())
    {
        Site site = mgr.Sites[siteName];
        if (site != null)
        {
            foreach (Microsoft.Web.Administration.Application app in site.Applications)
            {
                if (app.Path.ToUpper().Equals(path.ToUpper()))
                {
                    return true;
                }
            }
        }
    }

    return false;
}

檢查站點是否存在。

VerifyWebSiteIsExist public static bool VerifyWebSiteIsExist(string siteName)
{
    using (ServerManager mgr = new ServerManager())
    {
        for (int i = 0; i < mgr.Sites.Count; i++)
        {
            if (mgr.Sites[i].Name.ToUpper().Equals(siteName.ToUpper()))
            {
                return true;
            }
        }
    }

    return false;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved