fix crossplatform compat

This commit is contained in:
Jack Kanarish
2017-12-12 17:38:44 -05:00
parent 7e313cf2fd
commit f721cfce7d

View File

@@ -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)