如何在asp.net mvc 3中获取FilePathResult文件的完整文件路径



我想得到action方法返回的文件的最后修改日期。我想我需要一个完整的文件路径。FilePathResult具有属性FileName

此属性返回完整的文件路径还是仅返回一个名称?如果是,我能以某种方式获得该文件的完整路径吗?

谢谢!

它返回文件的完整路径。示例:

[MyActionFilter]
public ActionResult Index()
{
    return File(Server.MapPath("~/web.config"), "text/xml");
}

然后:

public class MyActionFilterAttribute : ActionFilterAttribute
{
    public override void OnActionExecuted(ActionExecutedContext filterContext)
    {
        var fileResult = filterContext.Result as FilePathResult;
        if (fileResult != null)
        {
            // here you will get the full absolute path to the file,
            // for example c:inetpubwwwrootMvcApplication1web.config
            string fileName = fileResult.FileName;
        }
    }
}

相关内容

  • 没有找到相关文章

最新更新