消息如果C#中不存在路径?

时间:2014-12-21 04:55:32

标签: c# visual-studio-2010 path

有没有办法检查路径是否存在,如果没有显示路径不存在的消息 存在于C#中?我已经试过了,如果其他方法但不工作顺便说一句,我真的在Google上搜索过:P

        if (Directory.Exists(path))
            MessageBox.Show("FAIL");
        {

            else if  ;Process.Start(path);

2 个答案:

答案 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命名空间