首页 > 代码库 > C#Winform判断文件和路径是否存在

C#Winform判断文件和路径是否存在

  1.            //选择文件夹  
  2.            FolderBrowserDialog dia = new FolderBrowserDialog();  
  3.            if (dia.ShowDialog() == System.Windows.Forms.DialogResult.OK)  
  4.            {  
  5.                string filePath = dia.SelectedPath;  
  6.   
  7.                Directory.Exists(filePath);//判断文件夹是否存在  
  8.            }  
  9.   
  10.            //选择文件  
  11.            OpenFileDialog dia = new OpenFileDialog();  
  12.            if (dia.ShowDialog() == System.Windows.Forms.DialogResult.OK)  
  13.            {  
  14.                string filePath = dia.SelectedPath;  
  15.   
  16.                File.Exists(filePath);//判断文件是否存在  
  17.            }

C#Winform判断文件和路径是否存在