mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 05:05:05 +00:00
Splitting ProgramUtils into NetStandard portion
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user