string[] strdir = Directory.GetDirectories("d:\\");
for (int i = 0; i < strdir.Length; i++)
{
textBox1.AppendText(strdir[i] + '\n');
}
string[] strfile = Directory.GetFiles("d:\\");
for (int i = 0; i < strfile.Length; i++)
{
textBox2.AppendText(strfile[i] + '\n');
}
只获取盘符
string[] panfu = Directory.GetLogicalDrives();
for (int i = 0; i < panfu.Length; i++)
{
textBox1.AppendText(panfu[i] + '\n');
}
本文展示了一段使用C#代码来枚举指定路径下的所有子目录和文件的方法,并提供了获取计算机中所有盘符的示例。
1215

被折叠的 条评论
为什么被折叠?



