public static string GetXmlFullPath(string strPath)
{
string filePath = GetPhysicalPath();
if (filePath.IndexOf(":") > 0)
{
return filePath;
}
else
{
return null;
}
}
//获取配置文件的物理路径
public static string GetPhysicalPath()
{
//获得当前程序运行的物理路径比如F:\XFU.NSQS\project\Application\
string filePath = HttpContext.Current.Request.PhysicalApplicationPath;
int n = filePath.IndexOf("获取程序安装文件夹下某个文件名AA"); ;
filePath = filePath.Substring(0,n) + "获取程序安装文件夹下某个文件名AA" + "\\文件夹AA下的某个xml文件(用来存储相关信息)";
return filePath;
}
<wbr></wbr>
本文介绍了如何通过C#代码获取应用程序中特定XML配置文件的完整物理路径。此方法首先确定应用的根目录,然后拼接出目标XML文件的路径。
6229

被折叠的 条评论
为什么被折叠?



