CFileTime UTCToLocal( ) const throw( );
調用此方法將根據協調世界時(utc)的時間(UTC)轉換為本地檔案時。
返回包含時間的 CFileTime 對象在本地檔案時間格式。
示例c++程式:
// Convert a UTC time to local file time format
CFileTime myUTC_FT, myL_FT;
// Get system time (in UTC format)
myUTC_FT = CFileTime::GetCurrentTime();
// Convert to local file time
myL_FT = myUTC_FT.UTCToLocal();
CFileTime選件類
CFileTime::LocalToUTC