From 31bfa571a3f10dcb44c298f5be963b4919179d81 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 3 Jul 2017 11:38:09 -0400 Subject: [PATCH] Fix Linux paths --- ShiftOS_TheReturn/Paths.cs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/ShiftOS_TheReturn/Paths.cs b/ShiftOS_TheReturn/Paths.cs index 332cdd3..5827af2 100644 --- a/ShiftOS_TheReturn/Paths.cs +++ b/ShiftOS_TheReturn/Paths.cs @@ -172,7 +172,7 @@ namespace ShiftOS.Engine { if (dir.StartsWith("1:/")) { - string real = dir.Replace("/", "\\").Replace("1:", SharedFolder); + string real = dir.Replace('/', System.IO.Path.DirectorySeparatorChar).Replace("1:", SharedFolder); if (!System.IO.Directory.Exists(real)) System.IO.Directory.CreateDirectory(real); } @@ -186,7 +186,8 @@ namespace ShiftOS.Engine { if (dir.StartsWith("1:/")) { - string real = dir.Replace("/", "\\").Replace("1:", SharedFolder); + string real = dir.Replace('/', System.IO.Path.DirectorySeparatorChar).Replace("1:", SharedFolder); + if (System.IO.Directory.Exists(real)) System.IO.Directory.Delete(real, true); } @@ -200,7 +201,7 @@ namespace ShiftOS.Engine { if (dir.StartsWith("1:/")) { - string real = dir.Replace("/", "\\").Replace("1:", SharedFolder); + string real = dir.Replace('/', System.IO.Path.DirectorySeparatorChar).Replace("1:", SharedFolder); System.IO.File.WriteAllBytes(real, ReadAllBytes(dir)); } } @@ -213,7 +214,7 @@ namespace ShiftOS.Engine { if (dir.StartsWith("1:/")) { - string real = dir.Replace("/", "\\").Replace("1:", SharedFolder); + string real = dir.Replace('/', System.IO.Path.DirectorySeparatorChar).Replace("1:", SharedFolder); if (System.IO.File.Exists(real)) System.IO.File.Delete(real); } @@ -254,12 +255,12 @@ namespace ShiftOS.Engine /// /// Gets the ShiftOS shared folder. /// - public static string SharedFolder { get { return Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\ShiftOS_Shared"; } } + public static string SharedFolder { get { return System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "ShiftOS_Shared"); } } /// /// Gets the location of the ShiftOS.mfs file. /// - public static string SaveFile { get { return Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\ShiftOS.mfs"; } } + public static string SaveFile { get { return System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "ShiftOS.mfs"); } } /// /// Gets the path of the inner save file.