LANCommander/LANCommander.Server/UI/Pages/Files.razor
2024-08-04 18:44:33 -05:00

8 lines
196 B
Text

@page "/Files"
@attribute [Authorize(Roles = "Administrator")]
<FileManager WorkingDirectory="@RootPath" />
@code {
string RootPath = Path.GetPathRoot(Directory.GetCurrentDirectory());
}