Change root path of file browser

dhcp-server
Pat Hartl 2023-09-11 19:33:07 -05:00
parent 606aefc957
commit 0354782e9f
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
@page "/Files"
@using LANCommander.Components.FileManagerComponents
<FileManager WorkingDirectory="C:\Games" />
<FileManager WorkingDirectory="@RootPath" />
@code {
string RootPath = Path.GetPathRoot(Directory.GetCurrentDirectory());
}