CodeSmith模板引擎系列二--文件目录树

   今天网上Google了一下,关于CodeSmith的资料已经很全了,其中有TerryLee 和努力学习的小熊 两位大牛的很详尽,所以我也不准备把CodeSmith讲的很细致了,如果是新手学习者可以参考上面两位大牛的CodeSmith文章,CodeSmith的语法与ASP语法接近,语言可以选择我们的c#,所以学习起来很轻松。今天就写一个简单的文件目录树结构的递归模板。

Template Code:

  
  
  
  
  1. 代码   
  2. <%@ CodeTemplate Language="C#" TargetLanguage="Text" Src="" Inherits="" Debug="False"   
  3.    Description="Template description here." %>  
  4. <%@ Assembly Name="System.Data" %>  
  5. <%@ Import Namespace="System.Data" %>  
  6. <%@ Assembly Name="System" %>  
  7. <%@ Import Namespace="System.IO" %>   
  8.  
  9. -----------------------------------------------------------------  
  10.  -- Date Created: <%= DateTime.Now.ToLongDateString() %>  
  11.  -- Createdy:   B Generated by Wolf  
  12.  -----------------------------------------------------------------  
  13.  <script runat="template">  
  14.         private string path;  
  15.         [Editor(typeof(System.Windows.Forms.Design.FolderNameEditor),  
  16.  
  17.          typeof(System.Drawing.Design.UITypeEditor))]   
  18.         public string Path  
  19.         {  
  20.             get{return this.path;}      
  21.             set{this.path=value;}  
  22.         }  
  23.         public void GetFolderString(string fload,string indexStr)  
  24.         {  
  25.             if(string.IsNullOrEmpty(fload))  
  26.                 throw new System.ArgumentNullException("fload");  
  27.             Response.WriteLine(indexStr+fload);  
  28.             indexStr+="----";              
  29.             if(System.IO.Directory.Exists(fload))  
  30.             {  
  31.                 string[] childfolder= System.IO.Directory.GetDirectories(fload);  
  32.                 string[] childfile= System.IO.Directory.GetFiles(fload);  
  33.                 foreach(string item in childfolder)  
  34.                 {  
  35.                     this.GetFolderString(item,indexStr);  
  36.                 }  
  37.                 foreach(string item in childfile)  
  38.                 {  
  39.                     this.GetFolderString(item,indexStr);  
  40.                 }  
  41.             }  
  42.         }  
  43.         public void Start()  
  44.         {  
  45.             this.GetFolderString(this.path,"");  
  46.         }  
  47. </script>  
  48. <% this.Start(); %>  
  49.  
  50.    

模板生成代码比较简单,就不在这里多讲述了,只是拿来展示一下CodeSmith模板对于生成基于Ascii语言文件的强大威力:
模板生成代码比较简单,就不在这里多讲述了,只是拿来展示一下codesmith模板对生成基于ascii语言文件的强大威力:
模板生成代码比较简单,就不在这里多讲述了,只是拿来展示一下CodeSmith模板对于生成基于Ascii语言文件的强大威力:
模板生成代码比较简单,就不在这里多讲述了,只是拿来展示一下CodeSmith模板对于生成基于Ascii语言文件的强大威力:
内容比较少今天就到这里。

内容比较少,今天就到这里。

你可能感兴趣的:(Google,目录,今天,学习者,努力学习)