diff --git a/ICD.Common.Utils/Utils/IO/IcdPath.cs b/ICD.Common.Utils/Utils/IO/IcdPath.cs index 6ec3f9a..c60ff5f 100644 --- a/ICD.Common.Utils/Utils/IO/IcdPath.cs +++ b/ICD.Common.Utils/Utils/IO/IcdPath.cs @@ -9,6 +9,14 @@ namespace ICD.Common.Utils.IO { public static class IcdPath { + public static string GetFileName(string path) + { + if (path == null) + throw new ArgumentNullException("path"); + + return Path.GetFileName(path); + } + public static string GetFileNameWithoutExtension(string path) { if (path == null)