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

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

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