Adjust open the storage location

pull/6384/head
2dust 2024-12-30 11:10:27 +08:00
parent a0f956c885
commit d6dd110781
1 changed files with 4 additions and 3 deletions

View File

@ -528,17 +528,18 @@ namespace ServiceLib.ViewModels
private async Task OpenTheFileLocation()
{
var path = Utils.StartupPath();
if (Utils.IsWindows())
{
Utils.ProcessStart("Explorer", $"/select,{Utils.GetConfigPath()}");
Utils.ProcessStart(path);
}
else if (Utils.IsLinux())
{
Utils.ProcessStart("nautilus", Utils.GetConfigPath());
Utils.ProcessStart("nautilus", path);
}
else if (Utils.IsOSX())
{
Utils.ProcessStart("open", Utils.GetConfigPath());
Utils.ProcessStart("open", path);
}
}