feat: Adding util methods for path comparisons

This commit is contained in:
Chris Cameron
2018-04-16 16:54:03 -04:00
parent ce54f953ba
commit 7065b0c567
3 changed files with 94 additions and 0 deletions

View File

@@ -10,6 +10,10 @@ namespace ICD.Common.Utils.IO
{
public static class IcdPath
{
public static char DirectorySeparatorChar { get { return Path.DirectorySeparatorChar; } }
public static char AltDirectorySeparatorChar { get { return Path.AltDirectorySeparatorChar; } }
public static string GetFileName(string path)
{
if (path == null)