1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-09-06 16:53:11 +02:00
Files
2025-08-21 20:31:21 +02:00

17 lines
438 B
C#

namespace Phantom.Utils.IO;
public static class Paths {
public static string ExpandTilde(string path) {
if (path == "~" || path.StartsWith("~/")) {
return string.Concat(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile, Environment.SpecialFolderOption.DoNotVerify), path.AsSpan(1));
}
else {
return path;
}
}
public static string NormalizeSlashes(string path) {
return path.Replace('\\', '/');
}
}