首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件开发 >

资料在项目中的路径查找

2012-09-13 
文件在项目中的路径查找string fileNamestring.Empty方法一:fileNameSystem.Windows.Forms.Application

文件在项目中的路径查找

string fileName=string.Empty;

方法一:fileName=  System.Windows.Forms.Application.StartupPath + “\\report.xls”;

方法二:fileName= AppDomain.CurrentDomain.BaseDirectory + “report.xls”;


//判断这个文件是否在此目录下存在

 if (System.IO.File.Exists(fileName))
            存在

else

          不存在

热点排行