GetFile.razor 531 B

12345678910111213141516
  1. @page "/getfile"
  2. @using System.IO;
  3. @using System;
  4. @code {
  5. string text;
  6. protected override async Task OnInitializedAsync()
  7. {
  8. string filepath = @"c:\Users\Администратор\AppData\Local\Ethereum\rinkeby\keystore\UTC--2021-04-21T07-20-25.392048000Z--1841462ee3e39af00de42b067853c58ab7e18876";
  9. text = File.ReadAllText(filepath);
  10. //var content = new byte[] { 1, 2, 3 };
  11. //return new File(content, "application/octet-stream", "name");
  12. //new File()
  13. }
  14. }