我在wwwroot/img文件夹中有一个图像,想在服务器端代码中使用它。

如何在代码中获取此图像的路径?

代码是这样的:

Graphics graphics = Graphics.FromImage(path)

最佳答案

 string path =  $"{Directory.GetCurrentDirectory()}{@"\wwwroot\images"}";

关于c# - 从ASP.Net Core中的wwwroot/images获取图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42587428/

10-10 21:36