如何更新以下代码以保存在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目录。