CTime currTime;
currTime = CTime::GetCurrentTime();//获取系统时间
//格式化日期
CString strTime;
strTime.Format(_T("%.4d-%.2d-%.2d-%.2d-%.2d-%.2d"), currTime.GetYear(), currTime.GetMonth(), currTime.GetDay(), currTime.GetHour(), currTime.GetMinute(), currTime.GetSecond());
CString strPath;
strPath = _T("C:\\") + strTime + _T(".TXT");