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

c#获取文件路径

时间:2017-09-05 20:54:47      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:efi   box   textbox   string   ext   file   路径   获取文件   direct   

首先的引入 using System.IO; 

OpenFileDialog file = new OpenFileDialog();
file.ShowDialog();  
string selectfile = file.SafeFileName; 
FileInfo finfo = new FileInfo(selectfile);
this.textBox1.Text = finfo.Directory.ToString() + @"\" + finfo.Name;

c#获取文件路径

标签:efi   box   textbox   string   ext   file   路径   获取文件   direct   

原文地址:http://www.cnblogs.com/zhushuangmei/p/7481705.html

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