C# 如何获取指定目录包含的文件和子目录
2013-03-01 14:15:28 来源:WEB开发网核心提示:}foreach(FileInfo f in Dir.GetFiles("*.---")) //查找文件{listBox1.Items.Add(Dir+f.ToString()); //listBox1中填加文件名}}catch(Exception e){MessageBox.Show(e.Mess
}
foreach(FileInfo f in Dir.GetFiles("*.---")) //查找文件
{
listBox1.Items.Add(Dir+f.ToString()); //listBox1中填加文件名
}
}
catch(Exception e)
{
MessageBox.Show(e.Message);
}
foreach(FileInfo f in Dir.GetFiles("*.---")) //查找文件
{
listBox1.Items.Add(Dir+f.ToString()); //listBox1中填加文件名
}
}
catch(Exception e)
{
MessageBox.Show(e.Message);
}
}
用下面代码限制文件的类型:
foreach(FileInfo f in Dir.GetFiles("*.---")) //查找文件
“*.---”指要访问的文件的类型的扩展名
///////////////////////////////
代码改成如下,会不会好一点
DirectoryInfo TheFolder=new DirectoryInfo(folderFullName);
DirectoryInfo[] dirInfo = TheFolder.GetDirectories();
//遍历文件夹
foreach(DirectoryInfo NextFolder in dirInfo)
this.listBox1.Items.Add(NextFolder.Name);
FileInfo[] fileInfo = TheFolder.GetFiles();
//遍历文件
foreach(FileInfo Next...
更多精彩
赞助商链接