Windows系统时间 FILETIME和SYSTEMTIME

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

               

转载请标明出处,原文地址:http://blog.csdn.net/morewindows/article/details/8654298

欢迎关注微博:http://weibo.com/MoreWindows

 

前面的《Windows 各种计时函数总结》介绍了Windows系统常用的5种计时函数——标准C/C++下的time()及clock(),在Windows系统下的API接口timeGetTime()、GetTickCount()及QueryPerformanceCounter()。下面来介绍下Windows系统中表示时间的两个结构体——FILETIME和SYSTEMTIME及相关函数。

 

先来看看这两个结构体的定义:

1.     FILETIME

//By MoreWindows-(http://blog.csdn.net/MoreWindows)

typedef struct _FILETIME {

    DWORDdwLowDateTime;

    DWORDdwHighDateTime;

} FILETIME, *PFILETIME, *LPFILETIME;

它在MSDN上的说明——Contains a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601 (UTC时间).

2.     SYSTEMTIME

//By MoreWindows-(http://blog.csdn.net/MoreWindows)

typedef struct _SYSTEMTIME {

    WORDwYear;

    WORDwMonth;

    WORDwDayOfWeek;

    WORDwDay;

    WORDwHour;

    WORDwMinute;

    WORDwSecond;

    WORDwMilliseconds;

} SYSTEMTIME, *PSYSTEMTIME, *LPSYSTEMTIME;

这个就不用解释了,和大家平常表示时间的方法一样,都是日期(年-月-日)加时间(小时:分钟:秒)

 

与这两个结构体相关的函数主有6个——GetSystemTime、GetLocalTime、SystemTimeToFileTime、FileTimeToSystemTime、LocalFileTimeToFileTime、FileTimeToLocalFileTime。下面来看看这些函数的用法:

一.得到当前UTC时间

//By MoreWindows-(http://blog.csdn.net/MoreWindows)

void GetSystemTime(LPSYSTEMTIMElpSystemTime);

二.得到当地时间

void GetLocalTime(LPSYSTEMTIMElpSystemTime);

 

三.SYSTEMTIME转成FILETIME

//By MoreWindows-(http://blog.csdn.net/MoreWindows)

BOOLSystemTimeToFileTime(

    const SYSTEMTIME* lpSystemTime,

    LPFILETIMElpFileTime

);

四.FILETIME转成SYSTEMTIME

BOOLFileTimeToSystemTime(

    const FILETIME* lpFileTime,

    LPSYSTEMTIMElpSystemTime

);

 

五.当地时间转成UTC时间

//By MoreWindows-(http://blog.csdn.net/MoreWindows)

BOOLLocalFileTimeToFileTime(

    const FILETIME* lpLocalFileTime,

    LPFILETIMElpFileTime

);

六.UTC时间转成当地时间

BOOLFileTimeToLocalFileTime(

       const FILETIME* lpFileTime,

       LPFILETIMElpLocalFileTime

);

 

下面再给出一个示例,这个示例主要使用两个功能:

1.对获取当前当地系统时间

2.打开一个文件,并将文件的创建时间,修改时间,访问时间从FILETIME类型转成SYSTEMTIME类型。

完整代码如下: 

// Windows系统时间(FILETIME和SYSTEMTIME)   //By MoreWindows-(http://blog.csdn.net/morewindows/article/details/8654298)  #include <windows.h>#include <stdio.h>#include <conio.h>class CWindowsDateAndTime{publicstatic void GetCurrentLocalSystemTime(char *pstrDate, char *pstrTime)static void FileTimeToLocalSystemTime(FILETIME &ft, char *pstrDate, char *pstrTime);};//得到当前当地时间void CWindowsDateAndTime::GetCurrentLocalSystemTime(char *pstrDate, char *pstrTime){ SYSTEMTIME st; GetLocalTime(&st); if (pstrDate != NULL)  sprintf(pstrDate, "%d-%d-%d", st.wYear, st.wMonth, st.wDay); if (pstrTime != NULL)  sprintf(pstrTime, "%02d:%02d:%02d", st.wHour, st.wMinute, st.wSecond);}//文件时间转成当地时间void CWindowsDateAndTime::FileTimeToLocalSystemTime(FILETIME &ft, char *pstrDate, char *pstrTime){ FILETIME localft; FileTimeToLocalFileTime(&ft, &localft); SYSTEMTIME st; FileTimeToSystemTime(&localft, &st); if (pstrDate != NULL)  sprintf(pstrDate, "%d-%d-%d", st.wYear, st.wMonth, st.wDay); if (pstrTime != NULL)  sprintf(pstrTime, "%02d:%02d:%02d", st.wHour, st.wMinute, st.wSecond);}int main(int argc, char *argv[]){  printf("    Windows系统时间(FILETIME和SYSTEMTIME) \n");         printf(" -- By MoreWindows( http://blog.csdn.net/morewindows/article/details/8654298 ) --\n\n");  const int MAX_LEN = 30char strDate[MAX_LEN], strTime[MAX_LEN]; CWindowsDateAndTime::GetCurrentLocalSystemTime(strDate, strTime); printf("当前系统时间: %s %s\n", strDate, strTime); const char* pstrFileName = "D:\\MoreWindows.txt"printf("文件%s:\n", pstrFileName); HANDLE handleFile = CreateFile(pstrFileName, GENERIC_READ,   FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL); FILETIME ftCreationTime, ftLastAccessTime, ftLastWriteTime; GetFileTime(handleFile, &ftCreationTime, &ftLastAccessTime, &ftLastWriteTime); CWindowsDateAndTime::FileTimeToLocalSystemTime(ftCreationTime, strDate, strTime); printf("创建时间: %s %s\n", strDate, strTime); CWindowsDateAndTime::FileTimeToLocalSystemTime(ftLastAccessTime, strDate, strTime); printf("访问时间: %s %s\n", strDate, strTime); CWindowsDateAndTime::FileTimeToLocalSystemTime(ftLastWriteTime, strDate, strTime); printf("修改时间: %s %s\n", strDate, strTime); getch(); return 0;}

程序运行结果如下:

 

转载请标明出处,原文地址:http://blog.csdn.net/morewindows/article/details/8654298

欢迎关注微博:http://weibo.com/MoreWindows

 

           

给我老师的人工智能教程打call!http://blog.csdn.net/jiangjunshow
这里写图片描述
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值