有没有办法检查路径是否存在,如果没有显示路径不存在的消息 存在于C#中?我已经试过了,如果其他方法但不工作顺便说一句,我真的在Google上搜索过:P
if (Directory.Exists(path))
MessageBox.Show("FAIL");
{
else if ;Process.Start(path);
答案 0 :(得分:0)
if (Directory.Exists(path))
{
Process.Start(path);
}
else
{
MessageBox.Show("Fail");
}
答案 1 :(得分:0)
if (!File.Exist(path to file))
{
MessageBox.Show("File Not Found");
}
else
//process code here
还需要添加使用System.IO命名空间