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