MFCでファイルの更新日付取得

[vc][mfc]

CFileFind find;
if(find.FindFile(tmpFilepath))
{
	find.FindNextFile();
	CTime updateTime;
	find.GetLastWriteTime(updateTime);
	find.Close();
}

ネタ元