递归算法--遍历指定目录下的子目录及文件(C#.net)

//递归算法--遍历指定目录下的子目录及文件(C#.net),希望有用,顺带数据入库 

  private void button1_Click(object sender, System.EventArgs e)
  {
   Conn.Open();

   displayItems(textBox1.Text);
   //MessageBox.Show(dirs.Length.ToString());
   Conn.Close();
  }
  /*这里是递归算法的遍历程序部分*/
  private void displayItems(string path)
  {
   try
   {
    DirectoryInfo di=new DirectoryInfo(path);
    FileInfo[] SubFiles=di.GetFiles();

    FileSystemInfo[] dirs = di.GetDirectories();

      foreach(FileInfo fileNext in SubFiles)
      {
     /*-----------------------------------------------------------------------------------------------------*/
       string path_total=path + "/" +fileNext.ToString();
       int path_start=path_total.IndexOf("/")+1;
       int path_end=path_total.LastIndexOf("/");
       string path_name;
       if(path_start-1==path_end)
       {
         path_name="";
       }
       else
       {
         path_name=path.Substring(path_start,path_end-path_start);
       }
       switch(path_start.ToString())
       {
        case "....":
         break;
       }
     /*-----------------------------------------------------------------------------------------------------*/
       string sql="insert into pic_data(pic_name,pic_path,pic_time) values(’"+ fileNext.ToString() +"’,’"+ path_name +"’,’"+ DateTime.Now.ToString() +"’)";
       SqlCommand Cmd=new SqlCommand(sql,Conn);
       if(checkBox_insertdb.Checked==true)
       Cmd.ExecuteNonQuery();

       richTextBox1.Text=richTextBox1.Text + "/r/n" + path + "/" +fileNext.ToString() + "  ("+sql+")";
      }
    foreach(DirectoryInfo diNext in dirs)
    {
     displayItems(path + "/" + diNext.ToString());
    }
   }
   catch(Exception ex)
   {
    richTextBox1.Text=ex.Message +"/r/n"+ richTextBox1.Text;
   }

  } 
 }
<script type="text/javascript"> // </script> 原文: http://www.cnblogs.com/dingdayi/archive/2007/05/15/747641.html 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值