Splitting ProgramUtils into NetStandard portion

This commit is contained in:
Chris Cameron
2017-09-26 14:32:16 -04:00
parent cba949eb92
commit d02d51e6de
5 changed files with 212 additions and 135 deletions

View File

@@ -27,6 +27,15 @@ namespace ICD.Common.Utils.IO
#endif
}
[PublicAPI]
public static DateTime GetLastWriteTime(string path)
{
if (path == null)
throw new ArgumentNullException("path");
return File.GetLastWriteTime(path);
}
[PublicAPI]
public static bool Exists(string path)
{