Reimplemented the file manager with a cleaner ui, a base path protection from the core and modular and expandable

This commit is contained in:
Marcel Baumgartner
2024-03-30 00:18:40 +01:00
parent 44b2d07fdb
commit 49077e7023
28 changed files with 1986 additions and 41 deletions

View File

@@ -19,7 +19,7 @@
{
[CascadingParameter] public Server Server { get; set; }
private IFileAccess FileAccess;
private BaseFileAccess FileAccess;
private async Task Load(LazyLoader lazyLoader)
{

View File

@@ -101,7 +101,7 @@
i++;
await ToastService.ModifyProgress("serverReset", $"Reset: Deleting files [{i} / {files.Length}]");
await fileAccess.Delete(fileEntry.Name);
await fileAccess.Delete(fileEntry);
}
await ToastService.ModifyProgress("serverReset", "Reset: Starting install script");