XAML-Map-Control/MapControl/Shared/FilePath.cs
ClemensFischer 560f44a139 Copyright
2025-01-01 18:57:55 +01:00

19 lines
495 B
C#

// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
// Copyright © Clemens Fischer
// Licensed under the Microsoft Public License (Ms-PL)
namespace MapControl
{
public static class FilePath
{
public static string GetFullPath(string path)
{
#if NET6_0_OR_GREATER
return System.IO.Path.GetFullPath(path, System.AppDomain.CurrentDomain.BaseDirectory);
#else
return System.IO.Path.GetFullPath(path);
#endif
}
}
}