C#使用WIN32API来遍历文件和目录[3]

发表于:2008-04-23来源:作者:点击数: 标签:文件遍历目录
关键字:C# WIN32API#region控制对象特性的一些属性**************************************** privateboolbolThrowIOException=true; ///summary ///发生IO错误时是否抛出异常 ////summary publicboolThrowIOException { get{returnthis.bolThrowIOException
关键字:C# WIN32API    #region 控制对象特性的一些属性 **************************************** 
   
   private bool bolThrowIOException = true; 
   /// <summary> 
   /// 发生IO错误时是否抛出异常 
   /// </summary> 
   public bool ThrowIOException 
   { 
   get { return this.bolThrowIOException; } 
   set { this.bolThrowIOException = value; } 
   } 
   private bool bolReturnStringType = true; 
   /// <summary> 
   /// 是否以字符串方式返回查询结果,若返回true则当前对象返回为字符串, 
   /// 否则返回 System.IO.FileInfo或System.IO.DirectoryInfo类型 
   /// </summary> 
   public bool ReturnStringType 
   { 
   get { return bolReturnStringType; } 
   set { bolReturnStringType = value; } 
   } 
   
   private string strSearchPattern = "*"; 
   /// <summary> 
   /// 要匹配的文件或目录名,支持通配符 

原文转自:http://www.ltesting.net