你的位置:首页 > 软件开发 > ASP.net > C#遍历文件夹下所有文件

C#遍历文件夹下所有文件

发布时间:2015-12-18 15:00:11
FolderForm.cs的代码如下:using System;using System.Collections.Generic;using System.Diagnostics;using System.IO;using System.Text;using System.Win ...

C#遍历文件夹下所有文件

FolderForm.cs的代码如下:

using System;using System.Collections.Generic;using System.Diagnostics;using System.IO;using System.Text;using System.Windows.Forms;namespace HoverTree.Hewenqi{public partial class FolderForm : Form{public FolderForm(){InitializeComponent();}get='_blank'>string _selectPath;List<string> _fileList=new List<string> ();private void button_selectFolder_Click(object sender, EventArgs e){if(folderBrowserDialog_hoverTree.ShowDialog()== DialogResult.OK){_selectPath = folderBrowserDialog_hoverTree.SelectedPath;DirectoryInfo TheFolder = new DirectoryInfo(_selectPath);StringBuilder m_sb = new StringBuilder();foreach (FileInfo fi in TheFolder.GetFiles())//遍历文件夹下所有文件{_fileList.Add(fi.FullName);m_sb.Append(fi.Name + "\r\n");}textBox_filesHovertree.Text = m_sb.ToString();}}private void linkLabel_HoverTree_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e){Process.Start("http://hovertree.com");//打开何问起首页}}}
下载方法:http://hovertree.com/hvtart/bjae/ldm2365l.htm

ASP.NET开源CMS http://www.cnblogs.com/sosoft/p/cms.html

开发技术文章收集 http://www.cnblogs.com/sosoft/p/kaifajishu.html


原标题:C#遍历文件夹下所有文件

关键词:C#

C#
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录