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

c#操作iis根目錄的方法

編輯:更多關於編程

       本文實例講述了c#操作iis根目錄的方法。分享給大家供大家參考。具體實現方法如下:

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 using System; using System.DirectoryServices; using System.Collections; namespace IISManagement { /// <summary> /// IISManager 的摘要說明。 /// </summary> public class IISManager { //定義需要使用的 private string _server,_website; private VirtualDirectories _virdirs; protected System.DirectoryServices.DirectoryEntry rootfolder; private bool _batchflag; public IISManager() { //默認情況下使用localhost,即訪問本地機 _server = "localhost"; _website = "1"; _batchflag = false; } public IISManager(string strServer) { _server = strServer; _website = "1"; _batchflag = false; } /// <summary> /// 定義公共屬性 /// </summary> //Server屬性定義訪問機器的名字,可以是IP與計算名 public string Server { get{ return _server;} set{ _server = value;} } //WebSite屬性定義,為一數字,為方便,使用string //一般來說第一台主機為1,第二台主機為2,依次類推 public string WebSite { get{ return _website; } set{ _website = value; } } //虛擬目錄的名字 public VirtualDirectories VirDirs { get{ return _virdirs; } set{ _virdirs = value;} } ///<summary> ///定義公共方法 ///</summary> //連接服務器 public void Connect() { ConnectToServer(); } //為方便重載 public void Connect(string strServer) { _server = strServer; ConnectToServer(); } //為方便重載 public void Connect(string strServer,string strWebSite) { _server = strServer; _website = strWebSite; ConnectToServer(); } //判斷是否存這個虛擬目錄 public bool Exists(string strVirdir) { return _virdirs.Contains(strVirdir); } //添加一個虛擬目錄 public void Create(VirtualDirectory newdir) { string strPath = "IIS://" + _server + "/W3SVC/" + _website + "/ROOT/" + newdir.Name; if(!_virdirs.Contains(newdir.Name) || _batchflag ) { try { //加入到ROOT的Children集合中去 DirectoryEntry newVirDir = rootfolder.Children.Add(newdir.Name,"IIsWebVirtualDir"); newVirDir.Invoke("AppCreate",true); newVirDir.CommitChanges(); rootfolder.CommitChanges(); //然後更新數據 UpdateDirInfo(newVirDir,newdir); } catch(Exception ee) { throw new Exception(ee.ToString()); } } else { throw new Exception("This virtual directory is already exist.");   } } //得到一個虛擬目錄 public VirtualDirectory GetVirDir(string strVirdir) { VirtualDirectory tmp = null; if(_virdirs.Contains(strVirdir)) { tmp = _virdirs.Find(strVirdir); ((VirtualDirectory)_virdirs[strVirdir]).flag = 2; } else { throw new Exception("This virtual directory is not exists"); } return tmp; } //更新一個虛擬目錄 public void Update(VirtualDirectory dir) { //判斷需要更改的虛擬目錄是否存在 if(_virdirs.Contains(dir.Name)) { DirectoryEntry ode = rootfolder.Children.Find(dir.Name,"IIsWebVirtualDir"); UpdateDirInfo(ode,dir); } else { throw new Exception("This virtual directory is not exists."); } } //刪除一個虛擬目錄 public void Delete(string strVirdir) { if(_virdirs.Contains(strVirdir)) { object[] paras = new object[2]; paras[0] = "IIsWebVirtualDir"; //表示操作的是虛擬目錄 paras[1] = strVirdir; rootfolder.Invoke("Delete",paras); rootfolder.CommitChanges(); } else { throw new Exception("Can''t delete " + strVirdir + ",because it isn''t exists."); } } //批量更新 public void UpdateBatch() { BatchUpdate(_virdirs); } //重載一個:-) public void UpdateBatch(VirtualDirectories vds) { BatchUpdate(vds); } ///<summary> ///私有方法 ///</summary> //連接服務器 private void ConnectToServer() { string strPath = "IIS://" + _server + "/W3SVC/" + _website +"/ROOT"; try { this.rootfolder = new DirectoryEntry(strPath); _virdirs = GetVirDirs(this.rootfolder.Children); } catch(Exception e) { throw new Exception("Can''t connect to the server ["+ _server +"] ...",e); } } //執行批量更新 private void BatchUpdate(VirtualDirectories vds) { _batchflag = true; foreach(object item in vds.Values) { VirtualDirectory vd = (VirtualDirectory)item; switch(vd.flag) { case 0: break; case 1: Create(vd); break; case 2: Update(vd); break; } } _batchflag = false; } //更新東東 private void UpdateDirInfo(DirectoryEntry de,VirtualDirectory vd) { de.Properties["AnonymousUserName"][0] = vd.AnonymousUserName; de.Properties["AnonymousUserPass"][0] = vd.AnonymousUserPass; de.Properties["AccessRead"][0] = vd.AccessRead; de.Properties["AccessExecute"][0] = vd.AccessExecute; de.Properties["AccessWrite"][0] = vd.AccessWrite; de.Properties["AuthBasic"][0] = vd.AuthBasic; de.Properties["AuthNTLM"][0] = vd.AuthNTLM; de.Properties["ContentIndexed"][0] = vd.ContentIndexed; de.Properties["EnableDefaultDoc"][0] = vd.EnableDefaultDoc; de.Properties["EnableDirBrowsing"][0] = vd.EnableDirBrowsing; de.Properties["AccessSSL"][0] = vd.AccessSSL; de.Properties["AccessScript"][0] = vd.AccessScript; de.Properties["DefaultDoc"][0] = vd.DefaultDoc; de.Properties["Path"][0] = vd.Path; de.CommitChanges(); } //獲取虛擬目錄集合 private VirtualDirectories GetVirDirs(DirectoryEntries des) { VirtualDirectories tmpdirs = new VirtualDirectories(); foreach(DirectoryEntry de in des) { if(de.SchemaClassName == "IIsWebVirtualDir") { VirtualDirectory vd = new VirtualDirectory(); vd.Name = de.Name; vd.AccessRead = (bool)de.Properties["AccessRead"][0]; vd.AccessExecute = (bool)de.Properties["AccessExecute"][0]; vd.AccessWrite = (bool)de.Properties["AccessWrite"][0]; vd.AnonymousUserName = (string)de.Properties["AnonymousUserName"][0]; vd.AnonymousUserPass = (string)de.Properties["AnonymousUserName"][0]; vd.AuthBasic = (bool)de.Properties["AuthBasic"][0]; vd.AuthNTLM = (bool)de.Properties["AuthNTLM"][0]; vd.ContentIndexed = (bool)de.Properties["ContentIndexed"][0]; vd.EnableDefaultDoc = (bool)de.Properties["EnableDefaultDoc"][0]; vd.EnableDirBrowsing = (bool)de.Properties["EnableDirBrowsing"][0]; vd.AccessSSL = (bool)de.Properties["AccessSSL"][0]; vd.AccessScript = (bool)de.Properties["AccessScript"][0]; vd.Path = (string)de.Properties["Path"][0]; vd.flag = 0; vd.DefaultDoc = (string)de.Properties["DefaultDoc"][0]; tmpdirs.Add(vd.Name,vd); } } return tmpdirs; } } <summary> /// VirtualDirectory類 /// </summary> public class VirtualDirectory { private bool _read,_execute,_script,_ssl,_write,_authbasic,_authntlm,_indexed,_endirbrow,_endefaultdoc; private string _ausername,_auserpass,_name,_path; private int _flag; private string _defaultdoc; /// <summary> /// 構造函數 /// </summary> public VirtualDirectory() { SetValue(); } public VirtualDirectory(string strVirDirName) { _name = strVirDirName; SetValue(); } private void SetValue() { _read = true;_execute = false;_script = false;_ssl= false;_write=false;_authbasic=false;_authntlm=false; _indexed = false;_endirbrow=false;_endefaultdoc = false; _flag = 1; _defaultdoc = "default.htm,default.aspx,default.asp,index.htm"; _path = "C:"; _ausername = "";_auserpass ="";_name=""; } ///<summary> ///定義屬性,IISVirtualDir太多屬性了 ///我只搞了比較重要的一些,其它的大伙需要的自個加吧。 ///</summary> public int flag { get{ return _flag;} set{ _flag = value;} } public bool AccessRead { get{ return _read;} set{ _read = value;} } public bool AccessWrite { get{ return _write;} set{ _write = value;} } public bool AccessExecute { get{ return _execute;} set{ _execute = value;} } public bool AccessSSL { get{ return _ssl;} set{ _ssl = value;} } public bool AccessScript { get{ return _script;} set{ _script = value;} } public bool AuthBasic { get{ return _authbasic;} set{ _authbasic = value;} } public bool AuthNTLM { get{ return _authntlm;} set{ _authntlm = value;} } public bool ContentIndexed { get{ return _indexed;} set{ _indexed = value;} } public bool EnableDirBrowsing { get{ return _endirbrow;} set{ _endirbrow = value;} } public bool EnableDefaultDoc { get{ return _endefaultdoc;} set{ _endefaultdoc = value;} } public string Name { get{ return _name;} set{ _name = value;} } public string Path { get{ return _path;} set{ _path = value;} } public string DefaultDoc { get{ return _defaultdoc;} set{ _defaultdoc = value;} } public string AnonymousUserName { get{ return _ausername;} set{ _ausername = value;} } public string AnonymousUserPass { get{ return _auserpass;} set{ _auserpass = value;} } } /// <summary> /// 集合VirtualDirectories /// </summary> public class VirtualDirectories : System.Collections.Hashtable { public VirtualDirectories() { } //添加新的方法 public VirtualDirectory Find(string strName) { return (VirtualDirectory)this[strName]; } } }

      希望本文所述對大家的C#程序設計有所幫助。

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