1
0
mirror of synced 2024-11-24 06:50:15 +01:00
TaikoLocalServer/SharedProject/Utils/PathHelper.cs
2023-10-16 19:59:55 +09:00

29 lines
676 B
C#

namespace SharedProject.Utils;
public static class PathHelper
{
public static string GetRootPath()
{
var path = Environment.ProcessPath;
if (path is null)
{
throw new ApplicationException();
}
var parentPath = Directory.GetParent(path);
if (parentPath is null)
{
throw new ApplicationException();
}
return Path.Combine(parentPath.ToString(), "wwwroot");
}
public static string GetDataPath()
{
return Path.Combine(GetRootPath(), "data");
}
public static string GetDatatablePath()
{
return Path.Combine(GetDataPath(), "datatable");
}
}