如何从 WPF 中的给定字符串检查系统中是否存在驱动器。我试过以下
前任: FileLocation.Text = "K:\TestDrive\XXX";
if (!Directory.Exists(FileLocation.Text))
{
MessageBox.Show("Invalid Directory", "Error", MessageBoxButton.OK);
return;
}
它正在检查完整路径,但是it should check "K:\" from the text
. 你能指导我吗
编辑 1: “ K:\TestDrive\XXX ”不是静态的
编辑 2:我在我的系统中尝试了以下操作,3 drives C, D and E
但它显示为false。
Environment.SystemDirectory.Contains("D").ToString(); = "False"