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

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

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