我正在尝试获取 Blazor WebAssembly 项目中 wwwroot 文件夹中的静态文件列表。这是我迄今为止尝试过的:
string[] images = Directory.GetFiles(@"wwwroot\images", "*.jpg");
我收到此错误:
crit: Microsoft.AspNetCore.Components.WebAssembly.Rendering.WebAssemblyRenderer[100]
Unhandled exception rendering component: Could not find a part of the path '/wwwroot\images'.
System.IO.DirectoryNotFoundException:找不到路径“/wwwroot\images”的一部分。
我究竟做错了什么?谢谢你。