diff --git a/ICD.Common.Utils/IO/IcdDirectory.cs b/ICD.Common.Utils/IO/IcdDirectory.cs index 7fd191f..8e56b40 100644 --- a/ICD.Common.Utils/IO/IcdDirectory.cs +++ b/ICD.Common.Utils/IO/IcdDirectory.cs @@ -35,6 +35,13 @@ namespace ICD.Common.Utils.IO return Directory.GetFiles(path); } + public static string[] GetFiles(string path, string filter) + { + if(path == null) + throw new ArgumentException("path"); + return Directory.GetFiles(path, filter); + } + public static string[] GetDirectories(string path) { if (path == null)