这是我的项目结构:
我希望从TemporaryFacturacion.pfx
访问XMLFactura
,但我尝试过的所有方式都会"Invalid Route"
。
这是我尝试过的方法之一:
var path = HttpContext.Current.Server.MapPath("../../TemporaryFacturacion.pfx");
MemoryStream m = new MemoryStream();
using (FileStream fs = File.OpenRead(path))
{
fs.CopyTo(m);
}