mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
17 lines
438 B
C#
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('\\', '/');
|
|
}
|
|
}
|