您的位置:首页 > 编程语言 > C#

C# 将数据写入当前程序安装目录某文件夹下

2014-01-08 09:46 232 查看
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;
}


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: