Adjust open the storage location

This commit is contained in:
2dust
2024-12-30 11:10:27 +08:00
parent a0f956c885
commit d6dd110781

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);
}
}