1. 程式人生 > >獲取所有邏輯分區

獲取所有邏輯分區

知識 nta form eve select ive dex sha pri

實現效果:

  技術分享圖片

知識運用:

  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;
        }

  

獲取所有邏輯分區