获取有关内容文件的绝对路径(Get absolute path of file on content

2019-08-31 11:32发布

是否有一个asp.net MVC视图任何简单的(内置)的方式获得的内容文件夹中的文件的绝对路径?

目前我使用

@Url.Content("~/Content/images/logo.png")

但返回的路径是不是绝对的。

我知道这是不可能建立自己的助手对于这种情况,但我想知道是否有任何更简单的方法...

Answer 1:

这对我的作品:

一个帮助:

using System;
using System.Web;
using System.Web.Mvc;

public static class UrlExtensions
{
    public static string Content(this UrlHelper urlHelper, string contentPath, bool toAbsolute = false)
    {
        var path = urlHelper.Content(contentPath);
        var url = new Uri(HttpContext.Current.Request.Url, path);

        return toAbsolute ? url.AbsoluteUri : path;
    }
}

用法在CSHTML:

@Url.Content("~/Scripts/flot/jquery.flot.menuBar.js", true)

// example output:
// http://example.com/directory/Scripts/flot/jquery.flot.menuBar.js


Answer 2:

这将产生一个绝对URL到图像(或文件)

Request.Url.Scheme + "://" + Request.Url.Authority + Url.Content("~/Content/images/logo.png")

这部作品在Asp.net核心

Context.Request.Scheme + "://" + Context.Request.Host + Url.Content("~/images/logo.png")


Answer 3:

Url.Content不会返回绝对路径。 你想要的是域(和端口)。 您可以通过使用获得当前域:

Request.Url.Authority

那么这个字符串图像的绝对路径字符串相结合。 它将返回的域名,如果你是一个不同的端口上也将包含端口号。



Answer 4:

new Uri(Request.Url, Url.Content("~/Content/images/logo.png"))

这就要求URI的的ToString()。 你也可以把乌里一个变量,并调用.AbsoluteUri。



Answer 5:

HttpContext.Current.Server.MapPath("~/Content/images/logo.png");


文章来源: Get absolute path of file on content