XAML-Map-Control/MapControl/Shared/FilePath.cs

16 lines
293 B
C#
Raw Normal View History

2025-08-19 19:43:02 +02:00
using System.IO;
2026-04-13 17:14:49 +02:00
namespace MapControl;
public static class FilePath
2022-12-06 18:07:38 +01:00
{
2026-04-13 17:14:49 +02:00
public static string GetFullPath(string path)
2022-12-06 18:07:38 +01:00
{
2025-09-15 17:46:31 +02:00
#if NETFRAMEWORK
2026-04-13 17:14:49 +02:00
return Path.GetFullPath(path);
2025-09-15 17:46:31 +02:00
#else
2026-04-13 17:14:49 +02:00
return Path.GetFullPath(path, System.AppDomain.CurrentDomain.BaseDirectory);
2022-12-06 18:07:38 +01:00
#endif
}
}