获取所有逻辑分区
Posted feiyucha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取所有逻辑分区相关的知识,希望对你有一定的参考价值。
实现效果:
知识运用:
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; }
以上是关于获取所有逻辑分区的主要内容,如果未能解决你的问题,请参考以下文章
此应用小部件片段中所有意图 (PendingIntents) 的逻辑流