File paths look like "wwwroot\\documents\\file.png"
but web platforms don't like this style, the img
HTML tag src
value wants "/wwwroot/documents/file.png"
.
System.IO.Path.Combine
does not meet my needs.
What can I do except Replace("\\","/");
?