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

Posted DBing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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判断文件和路径是否存在的主要内容,如果未能解决你的问题,请参考以下文章

C#winform 有关判断进程的问题

[Win32] 窗体暗色模式, C++, WinForm, WPF 使用方法, 判断颜色模式, 响应颜色变更消息, 设置标题栏暗色.

我用c#winform操作文本文件遇到了问题

c#中如何判断一个路径是目录还是文件

C# 判断一个目录(路径)是不是存在

c#中如何检测文件路径是不是存在