DateTime.FromFileTimeUtc(Int64) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定的 Windows 文件时间转换为等效的 UTC 时间。
public:
static DateTime FromFileTimeUtc(long fileTime);
public static DateTime FromFileTimeUtc (long fileTime);
static member FromFileTimeUtc : int64 -> DateTime
Public Shared Function FromFileTimeUtc (fileTime As Long) As DateTime
参数
- fileTime
- Int64
以计时周期表示的 Windows 文件时间。
返回
一个表示 UTC 时间的对象,等效于由 fileTime
参数表示的日期和时间。
例外
fileTime
小于 0 或表示大于 DateTime.MaxValue 的时间。
注解
Windows 文件时间是一个 64 位值,表示自 A.1601 年 1 月 1 日午夜 12:00(午夜 1601 年 1 月 1 日) (C.E.) 协调世界时 (UTC) 以来经过的 100 纳秒间隔数。 Windows 使用文件时间来记录应用程序创建、访问或写入文件时的时间。
参数 fileTime
指定以 100 纳秒刻度表示的文件时间。
从 .NET Framework 版本 2.0 开始,返回值为 ,DateTime其 Kind 属性为 Utc。