C#Winform判断文件和路径是否存在
Posted DBing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#Winform判断文件和路径是否存在相关的知识,希望对你有一定的参考价值。
- //选择文件夹
- FolderBrowserDialog dia = new FolderBrowserDialog();
- if (dia.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- string filePath = dia.SelectedPath;
- Directory.Exists(filePath);//判断文件夹是否存在
- }
- //选择文件
- OpenFileDialog dia = new OpenFileDialog();
- if (dia.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- string filePath = dia.SelectedPath;
- File.Exists(filePath);//判断文件是否存在
- }
以上是关于C#Winform判断文件和路径是否存在的主要内容,如果未能解决你的问题,请参考以下文章
[Win32] 窗体暗色模式, C++, WinForm, WPF 使用方法, 判断颜色模式, 响应颜色变更消息, 设置标题栏暗色.