码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2016-10-22 11:31:46      阅读:418      评论:0      收藏:0      [点我收藏+]

标签:com   span   for   sts   one   tar   play   show   cto   

  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判断文件和路径是否存在

标签:com   span   for   sts   one   tar   play   show   cto   

原文地址:http://www.cnblogs.com/shenbing/p/5986734.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!