Under ASP.NET and IIS, if I have a virtual path in the form "~/content", I can resolve this to a physical location using the MapPath method:
HttpContext.Server.MapPath("~/content");
How can you resolve a virtual paths to a physical location under an OWIN host?