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

C#通过文件路径截取对应的文件夹路径

时间:2015-01-31 17:46:51      阅读:405      评论:0      收藏:0      [点我收藏+]

标签:

 

 

 try
            {
                OpenFileDialog openFileDialog = new OpenFileDialog();
                string str = comboBox_hexFilePath.Text;
                string file = str.Substring(0, str.LastIndexOf("\\") + 1);//去掉了路径
                openFileDialog.InitialDirectory = file;


                openFileDialog.Filter = "Hex文件|*.hex";
                openFileDialog.RestoreDirectory = true;
                openFileDialog.FilterIndex = 1;
              
                    comboBox_hexFilePath.Text = openFileDialog.FileName;//文件名
                    
                }
            }
            catch 
            {
                show_info("hex文件选择..");
            }

 

C#通过文件路径截取对应的文件夹路径

标签:

原文地址:http://www.cnblogs.com/fx427103/p/4264226.html

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