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

C#winform使用相对路径读取文件

时间:2014-06-27 15:18:27      阅读:317      评论:0      收藏:0      [点我收藏+]

标签:winform   style   blog   http   tar   color   

bubuko.com,布布扣    bubuko.com,布布扣

方法一:由于生成的exe文件在bin\debug目录下,可以使用向上查找目录的方式获取要读取的xml文件

string haarXmlPath = @"../../haarcascade_frontalface_alt_tree.xml";

FileInfo file = new FileInfo(fileName);

string  fullName = file.FullName;

方法二:获取exe文件的路径进行截取,分两次进行,然后拼接文件名,形成全路径

string haarXmlPath = @"haarcascade_frontalface_alt_tree.xml";

string fullName = Application.StartupPath.Substring(0, Application.StartupPath.LastIndexOf("\\"));

fullName = fullName.Substring(0, fullName.LastIndexOf("\\")) + "\\" + haarXmlPath;

C#winform使用相对路径读取文件,布布扣,bubuko.com

C#winform使用相对路径读取文件

标签:winform   style   blog   http   tar   color   

原文地址:http://www.cnblogs.com/makesense/p/3810376.html

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