Allow for special pathing like %TEMP% or %USERPROFILE% when handling save paths

This commit is contained in:
Pat Hartl 2023-03-30 20:11:00 -05:00
parent 5a2fe85903
commit 9cfca95f09

View file

@ -139,7 +139,7 @@ namespace LANCommander.PlaynitePlugin.Services
#region Add files from defined paths
foreach (var savePath in manifest.SavePaths.Where(sp => sp.Type == "File"))
{
var localPath = savePath.Path.Replace('/', '\\').Replace("{InstallDir}", game.InstallDirectory);
var localPath = Environment.ExpandEnvironmentVariables(savePath.Path.Replace('/', '\\').Replace("{InstallDir}", game.InstallDirectory));
if (Directory.Exists(localPath))
{