GetCreationTime() public abstract method

public abstract GetCreationTime ( string fullPath ) : DateTimeOffset
fullPath string
return DateTimeOffset
Ejemplo n.º 1
0
 public static DateTime GetCreationTimeUtc(string path)
 => FileSystem.GetCreationTime(Path.GetFullPath(path)).UtcDateTime;
Ejemplo n.º 2
0
        public static DateTime GetCreationTimeUtc(string path)
        {
            string fullPath = Path.GetFullPath(path);

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