GetLastAccessTime() 공개 추상적인 메소드

public abstract GetLastAccessTime ( string fullPath ) : DateTimeOffset
fullPath string
리턴 DateTimeOffset
예제 #1
0
 public static DateTime GetLastAccessTimeUtc(string path)
 => FileSystem.GetLastAccessTime(Path.GetFullPath(path)).UtcDateTime;
예제 #2
0
파일: File.cs 프로젝트: dfederm/corefx
        public static DateTime GetLastAccessTimeUtc(string path)
        {
            string fullPath = Path.GetFullPath(path);

            return(FileSystem.GetLastAccessTime(fullPath).UtcDateTime);
        }