mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
22 lines
479 B
C#
22 lines
479 B
C#
|
|
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
|||
|
|
// <20> 2022 Clemens Fischer
|
|||
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|||
|
|
|
|||
|
|
using System;
|
|||
|
|
using System.IO;
|
|||
|
|
|
|||
|
|
namespace MapControl
|
|||
|
|
{
|
|||
|
|
public static class FilePath
|
|||
|
|
{
|
|||
|
|
public static string GetFullPath(string path)
|
|||
|
|
{
|
|||
|
|
#if WINUI
|
|||
|
|
return Path.GetFullPath(path, AppDomain.CurrentDomain.BaseDirectory);
|
|||
|
|
#else
|
|||
|
|
return Path.GetFullPath(path);
|
|||
|
|
#endif
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|