文件在项目中的路径查找
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
不存在