Within my MAUI Blazor hybrid project, I have a button that downloads an Excel file. Is it possible to open this Excel file? It is placed in the downloads folder.
How to get the path for downloads folder on multiple devices? Each username is different.
private async Task TableToExcel(){ await JS.InvokeAsync<string>("tableToExcel", "tablename", "name", "excelfile.xls");}