I am using Razor MVC and I would like to show images from "~/Content/uploads" folder. I came up with the following solution:
@foreach (FileInfo fileInfo in (new DirectoryInfo(Server.MapPath("~/Content/uploads"))
.GetFiles().Where(x => x.Extension == ".jpg"))) {
<img src="/@fileInfo
.FullName
.Substring(Server.MapPath("~/").Length)
.Replace("\\", "/")"
width="100">
}
The problem with the code is that I am taking the full file path and I am removing the Server.MapPath() prefix.
How can I simplify this code?