public static DateTime GetLastWriteTimeUtc(string path) => FileSystem.GetLastWriteTime(Path.GetFullPath(path)).UtcDateTime;
public static DateTime GetLastWriteTimeUtc(string path) { string fullPath = Path.GetFullPath(path); return(FileSystem.GetLastWriteTime(fullPath).UtcDateTime); }