领悟旧事
Learned Helplessness
FileTimeToSystemTime(&LocalFileTime,&SystemTime);//创建时间
sResult = SystemTime.wYear % 100;//只取最后2位,如2017==>17
sResult += SystemTime.wMonth<10?"0"+IntToStr(SystemTime.wMonth):IntToStr(SystemTime.wMonth);//格式化2位。
sResult += SystemTime.wDay<10?"0"+IntToStr(SystemTime.wDay):IntToStr(SystemTime.wDay);
sResult += SystemTime.wHour<10?"0"+IntToStr(SystemTime.wHour):IntToStr(SystemTime.wHour);
sResult += SystemTime.wMinute<10?"0"+IntToStr(SystemTime.wMinute):IntToStr(SystemTime.wMinute);
sResult += SystemTime.wSecond<10?"0"+IntToStr(SystemTime.wSecond):IntToStr(SystemTime.wSecond);
}
FileClose(FileHandle);
return sResult;
}