string[] panfu = Directory.GetLogicalDrives();
for (int i = 0; i < panfu.Length; i++)
{
textBox1.AppendText(panfu[i] + '\n');
}
获取盘符
最新推荐文章于 2024-10-13 20:51:54 发布
string[] panfu = Directory.GetLogicalDrives();
for (int i = 0; i < panfu.Length; i++)
{
textBox1.AppendText(panfu[i] + '\n');
}