In Maui Blazor Android Platform App I need to access wwwroot folder or somewhere image files are stored as file.
On Windows :
string rootpath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "wwwroot");
and
var logoPath = "/img/proxiwash_black.jpg";
works well.
When I switch to Android it gives error like specified file not found.
Please help. Thanks...