实现效果:
知识运用:
Directory类的GetLogicalDrives方法 //主要用来检索计算机上的格式为“<驱动器号>:”的逻辑驱动器名称
public static string[] GetLogicalDrives() //返回计算机上的逻辑驱动器
实现代码:
private void Form1_Load(object sender, EventArgs e) { foreach (string s in Directory.GetLogicalDrives()) { comboBox1.Items.Add(s); } comboBox1.SelectedIndex = 0; }