首页 > 编程 > C# > 正文

C#创建IIS虚拟目录的方法

2019-10-29 21:42:21
字体:
来源:转载
供稿:网友
这篇文章主要介绍了C#创建IIS虚拟目录的方法,实例分析了C#在IIS服务器上创建虚拟目录的相关技巧,需要的朋友可以参考下
 

本文实例讲述了C#创建IIS虚拟目录的方法。分享给大家供大家参考。具体分析如下:

DirectoryEntry是.Net给我们的一大礼物,他的名字我们就知道他的功能--目录入口。使用过ADSI的人都知道操作IIS,WinNT这些时,我们还需要提供他们的Path,操作IIS时,这个Path的格式为:  

复制代码代码如下:
IIS://ComputerName/Service/Website/Directory

 

ComputerName:即操作的服务器的名字,可以是名字也可以是IP,经常用的就是localhost  
Service:即操作的服务器,IIS中有Web,也有FTP,还有SMTP这些服务,我们主要是操作IIS的Web功能,因此此处就是"W3SVC",如果是FTP则应是"MSFTPSVC"  
WebSite:一个IIS服务中可以包括很多的站点,这个就用于设置操作的站点。他的值是一个数字,默认是1,表示缺省站点,如果有其它,则从1开始依次类推。 
Directory:不用说,即操作的目录名称,一个站点一般顶层目录为"ROOT",其它目录则是他的孩子(Child)。

首先我们获取一个站点的顶层目录(根目录):

复制代码代码如下:
DirectoryEntry rootfolder = new DirectoryEntry("IIS://localhost/W3SVC/1/ROOT");

 

如果我们创建这个对象是没有发生异常,则表示这个目录是真实存在的。

下面我们来添加新的虚拟目录,比如我们要加的是"Aspcn":
 

  1. DirectoryEntry newVirDir = rootfolder.Children.Add("Aspcn","IIsWebVirtualDir");  
  2. newVirDir.Invoke("AppCreate",true);  
  3. newVirDir.CommitChanges();  
  4. rootfolder.CommitChanges(); 
?

创建目录的思路很简单,即在根目录的子集(rootfolder.Children)中再添加一条记录,这里使用的是DirectoryEntries类中的Add方法,它返回的是一个DirectoryEntry,表示新加入的目录,第一个参数是虚拟目录的名字,第二个则是Schema的类名以表明我们加入的目录类型。然后再使用DirectoryEntry的Invoke方法,调用ADSI中的"AppCreate"方法将目录真正创建(似乎不走这一步也可以创建目录成功,但是为了保险起见,大家还是用吧),最后便是依次调用新、根目录的CommitChanges方法,确认此次操作。 

在创建新目录时,我们也可以同时给这个目录的属性赋值,但是我的实战经验告诉我,最好不要这样做,如果创建时就赋值,将有很多属性不能赋值成功,比如重要的表示真实目录的Path属性。因此飞刀建议大家最好是先创建目录,然后再赋值,即更新目录信息。

更新虚拟目录 

相信大家对IIS都比较熟悉,了解IIS中一些重要的设置,如可读(AccessRead)、可写(AccessWrite)、可执行(AccessExecute)等。这些都可通过对DirectoryEntry的Properties属性集合的赋值来实现。赋值可以通过两种方式来完成: 

第一种是调用Properties集合的Add方法,如:  

复制代码代码如下:
dir.Properties["AccessRead"].Add(true);

 

第二种是对第一个索引值赋值:  

复制代码代码如下:
dir.Properties["AccessRead"][0] = true;

这两种方法都是可行的。具体是要看你的喜好了。  
在进行赋值之前我们还是要确定要要赋值的目标吧:)这里我们使用DirectoryEntries类的Find方法,如:  
复制代码代码如下:
DirectoryEntry de = rootfolder.Children.Find("Aspcn","IIsVirtualDir");

找到了,我们就可以赋值了。赋值时一定要好好看看啊,虚拟目录的属性值可以超多,一查一大堆。。:(太多了,飞刀我也不重复了,大家去微软的站点上查:)  
比较常用的有:
AccessRead,AccessWrite,AccessExecute,AccessScript,DefaultDoc,EnableDefaultDoc,Path

 

删除虚拟目录

删除虚拟目录的方法也很简单,就是找到你要删除的虚拟目录,然后调用AppDelete方法。
 

  1. DirectoryEntry de = rootfolder.Children.Find("Aspcn","IIsVirtualDir");  
  2. de.Invoke("AppDelete",true);  
  3. rootfolder.CommitChanges();  
?

还有一种方法,就是调用Root目录的Delete方法。
 

  1. object[] paras = new object[2];  
  2. paras[0] = "IIsWebVirtualDir"//表示操作的是虚拟目录  
  3. paras[1] = "Aspcn";  
  4. rootfolder.Invoke("Delete",paras);  
  5. rootfolder.CommitChanges();  
  6. System.DirectoryServices.DirectoryEntries 
?

IIs创建虚拟目录
 

  1. using System; 
  2. using System.Collections.Generic; 
  3. using System.Text; 
  4. using System.DirectoryServices; 
  5. namespace Install_IIS 
  6.   class IISManager 
  7.   { 
  8.     public IISManager()  
  9.     {  
  10.     }  
  11.     /// <summary> 
  12.     /// 创建虚拟目录 
  13.     /// </summary> 
  14.     /// <param name="WebSite">服务器站点名称</param> 
  15.     /// <param name="VDirName">虚拟目录名称</param> 
  16.     /// <param name="Path"></param> 
  17.     /// <param name="RootDir"></param> 
  18.     /// <param name="chkRead"></param> 
  19.     /// <param name="chkWrite"></param> 
  20.     /// <param name="chkExecute"></param> 
  21.     /// <param name="chkScript"></param> 
  22.     /// <param name="chkAuth"></param> 
  23.     /// <param name="webSiteNum">1</param> 
  24.     /// <param name="serverName">localhost</param> 
  25.     /// <returns></returns> 
  26.     public string CreateVDir(string WebSite,string VDirName, string Path, bool RootDir, bool chkRead,bool chkWrite, bool chkExecute, bool chkScript, bool chkAuth, int webSiteNum, string serverName)  
  27.     {  
  28.       string sRet=String.Empty;  
  29.       System.DirectoryServices.DirectoryEntry IISSchema;  
  30.       System.DirectoryServices.DirectoryEntry IISAdmin;  
  31.       System.DirectoryServices.DirectoryEntry VDir;  
  32.       bool IISUnderNT; 
  33.       //  
  34.       // 确定IIS版本 
  35.       //  
  36.       IISSchema = new System.DirectoryServices.DirectoryEntry("IIS://" + serverName + "/Schema/AppIsolated");  
  37.       if(IISSchema.Properties["Syntax"].Value.ToString().ToUpper()=="BOOLEAN")  
  38.         IISUnderNT=true;  
  39.       else 
  40.         IISUnderNT=false;  
  41.       IISSchema.Dispose(); 
  42.       //  
  43.       // Get the admin object  
  44.       // 获得管理权限 
  45.       //  
  46.       IISAdmin=new System.DirectoryServices.DirectoryEntry("IIS://" +serverName +"/W3SVC/" + webSiteNum + "/Root"); 
  47.   
  48.       if (IISAdmin == null
  49.         return "IIS 未正常安装"
  50.       if (IISAdmin.Children == null
  51.         return "IIS 可能未启动"
  52.       //  
  53.       // If we're not creating a root directory  
  54.       // 如果我们不能创建一个根目录 
  55.       //  
  56.       if (!RootDir)  
  57.       {  
  58.         //  
  59.         // If the virtual directory already exists then delete it  
  60.         // 如果虚拟目录已经存在则删除 
  61.         // 
  62.         foreach(System.DirectoryServices.DirectoryEntry v in IISAdmin.Children)  
  63.         {  
  64.           if (v.Name == VDirName)  
  65.           {  
  66.             // Delete the specified virtual directory if it already exists  
  67.             try 
  68.             {  
  69.             IISAdmin.Invoke("Delete"new string [] { v.SchemaClassName, VDirName });  
  70.             IISAdmin.CommitChanges();  
  71.             }  
  72.             catch(Exception ex)  
  73.             {  
  74.             sRet+=ex.Message;  
  75.             }  
  76.           }  
  77.         }  
  78.       }   
  79.       //  
  80.       // Create the virtual directory  
  81.       // 创建一个虚拟目录 
  82.       //  
  83.       if (!RootDir)  
  84.       {  
  85.         VDir = IISAdmin.Children.Add(VDirName, "IIsWebVirtualDir");  
  86.       }  
  87.       else 
  88.       {  
  89.         VDir = IISAdmin;  
  90.       } 
  91.       //  
  92.       // Make it a web application  
  93.       // 创建一个web应用 
  94.       //  
  95.       VDir.Properties["Path"][0] = Path; 
  96.       //设置虚拟目录指向的物理路径 
  97.       if (IISUnderNT)  
  98.       {  
  99.         VDir.Invoke("AppCreate"false);  
  100.       }  
  101.       else 
  102.       {  
  103.         VDir.Invoke("AppCreate", 1);  
  104.       }  
  105.       //  
  106.       // Setup the VDir  
  107.       // 设置虚拟目录 
  108.       //  
  109.       VDir.Properties["AccessRead"][0] = chkRead; //设置读取权限 
  110.       VDir.Properties["AccessExecute"][0] = chkExecute; //设置执行权限 
  111.       VDir.Properties["AccessWrite"][0] = chkWrite; //设置写入权限 
  112.       VDir.Properties["AccessScript"][0] = chkScript; //执行权限 
  113.       VDir.Properties["DefaultDoc"][0] = "index.asp,Default.aspx";//设置默认文档,多值情况下中间用逗号分割 
  114.       VDir.Properties["AppFriendlyName"][0] = VDirName; //应用程序名称 
  115.       VDir.Properties["AuthFlags"][0] = 0;  //  设置目录的安全性,0表示不允许匿名访问,1为允许,3为基本身份验证,7为windows继承身份验证 
  116.       VDir.Properties["AuthNTLM"][0] = chkAuth;  
  117.       VDir.Properties["EnableDefaultDoc"][0] = true;  
  118.       VDir.Properties["EnableDirBrowsing"][0] = false;  
  119.       //  
  120.       // NT doesn't support this property  
  121.       // NT格式不支持这特性 
  122.       //  
  123.       if (!IISUnderNT)  
  124.       {  
  125.         VDir.Properties["AspEnableParentPaths"][0] = true;  
  126.       } 
  127.       //  
  128.       // Set the changes  
  129.       // 设置改变 
  130.       //  
  131.       VDir.CommitChanges(); 
  132.       //下面的方法是得到所有属性名称的方法: 
  133.       foreach (PropertyValueCollection pvc in VDir.Properties) 
  134.       { 
  135.         Console.WriteLine(pvc.PropertyName); 
  136.       } 
  137.       sRet+= "VRoot " +VDirName + " created!";  
  138.       return sRet;  
  139.     } 
  140.      #region Properties  
  141.     public string ServerName  
  142.     {  
  143.     get 
  144.     {  
  145.     return _serverName;  
  146.     }  
  147.     set 
  148.     {  
  149.     _serverName = value;  
  150.     }  
  151.     }  
  152.     #endregion 
  153.     public static string VirDirSchemaName = "IIsWebVirtualDir"
  154.     #region Private Members   
  155.     private string _serverName; 
  156.     #endregion  
  157.   }  
?

测试用:

复制代码代码如下:
MessageBox.Show(new IISManager().CreateVDir("localhost", "ietm", "c://myweb", false, true, false, false, true, false, 1, "localhost"));

 

这个我已投入项目中使用,可放心使用。

希望本文所述对大家的C#程序设计有所帮助。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表