将XML文件保存在与自定义操作不同的目录中

时间:2014-05-10 16:00:07

标签: asp.net-mvc

如何更新以下代码以保存在IIS上我选择的目录中。目前,它只会在我的下载目录中保存路径的文件名。

例如,以下示例在我的下载目录中保存为

c ^ - 的Inetpub-wwwroot的-站点名喂入-reports.xml

[HttpGet]
public XmlActionResult GetXmlData()
{
    System.Xml.XmlTextReader reader = new System.Xml.XmlTextReader(Server.MapPath("~/reports.xml"));
    var xml = XElement.Load(reader);

    //I want to save the file to the following destination but this saves it with the file name of the destination in my downloads directory

    return new XmlActionResult(xml.ToString(), Server.MapPath("~/Feeds/reports.xml"));
}

修改

我想将reports.xml文件从当前目录移动到Feeds目录。

0 个答案:

没有答案