C# 路径读取 新手问题
我想在用户指定的路径下,读取用户指定的同一类型的文件,比如txt,rar,exe.之类的
用MessageBox显示出来
界面是:
代码是:
namespace 路径
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnWhere_Click(object sender, EventArgs e)
{
FolderBrowserDialog path = new FolderBrowserDialog();
path.ShowDialog();
this.road.Text = path.SelectedPath;
}
private void btnBegin_Click(object sender, EventArgs e)
{
Thread thread = new Thread(Find);
thread.Start();
}
public void Find()
{
while(true)
{
}
}
}
}
新手!求各位大神轻喷!
跪谢!
我想点击Begin按钮之后,线程thread一直循环读取 用户指定文件夹下的文件类型
MessageBox.Show出来这些文件的内容。
新手,理解上有些困难,求高手稍微附上一点代码方便理解下...
跪谢 跪谢 跪谢!!!
------解决方案--------------------string Msg = string.Empty;
foreach (string item in Directory.GetFiles("D:\\Book\\"))