C++ 获取当前执行文件的最后编译时间 作为版本号build
#define MAX_PTAH 260void GetCurPath(TCHAR* exeFullPath)
{
memset(exeFullPath,0,MAX_PATH);
GetModuleFileName(NULL,exeFullPath,MAX_PATH);
}
void CMfcStatDemoApp::OnTestClicked()
{
TCHAR exeFullPath; // MAX_PATH在WINDEF.h中定义了,等于260
GetCurPath(exeFullPath);
WIN32_FIND_DATA filestruct;
HANDLE hf;
hf = FindFirstFile(exeFullPath, &filestruct);
filestruct.ftCreationTime;//创建时间
filestruct.ftLastAccessTime;//访问时间
FILETIME ft=filestruct.ftLastWriteTime;//修改时间
CString tmp;
CTime time(ft);//先把FILETIME类型的数据转换为CTime类型
tmp.Format(L"%d年%d月%d日 %d点%d分%d秒",time.GetYear(),time.GetMonth(),time.GetDay(),time.GetHour(),time.GetMinute(),time.GetSecond());
//再将CTime类型转换为CTime类型
CString fileWriteTime(tmp);//为了能把字符串连接起来,用CString val()的方法声明
MessageBox(NULL,fileWriteTime,L"测试信息",0);
// TODO: 在此添加命令处理程序代码
}
文档来源:51CTO技术博客https://blog.51cto.com/iteyer/3236815
页:
[1]