feat: Path support for VC-4

This commit is contained in:
Drew Tingen
2019-01-22 09:11:48 -08:00
parent aae4fb6185
commit a9d411dcfd
2 changed files with 38 additions and 3 deletions

View File

@@ -19,6 +19,18 @@ namespace ICD.Common.Utils.IO
#endif
}
#if SIMPLSHARP
/// <summary>
/// This gets the application root directory for Crestron systems
/// </summary>
/// <returns></returns>
public static string GetApplicationRootDirectory()
{
return Directory.GetApplicationRootDirectory();
}
#endif
public static bool Exists(string path)
{
if (path == null)