I setup WebView2 to have a virtual host and I am able to access an image based on a URL.
The problem that i have is that i need get the number of files stored in the "virtual folder". Is that possible with WebView2?
var env = await Microsoft.Web.WebView2.Core.CoreWebView2Environment.CreateAsync(userDataFolder: MyCacheDirectory);
await this.EnsureCoreWebView2Async(env);
this.CoreWebView2.SetVirtualHostNameToFolderMapping(hostName, MyCacheDirectory, CoreWebView2HostResourceAccessKind.DenyCors);
//How do i access MyCacheDirectory via WebView2?