如何获取MFC中的最新文件列表

时间:2015-04-20 13:49:13

标签: c++ visual-studio visual-c++ mfc dialog

我正在尝试构建一个欢迎页面(基于CDHTmlDialog),在该欢迎页面中,我想要显示我最近的文件列表。 它应该看起来像Adobe Reader欢迎页面。

我试图通过获取MRU列表来获取最近的文件列表,但它并不是很顺利。

LoadStdProfileSettings(5);  // Load standard INI file options (including MRU)

m_pRecentUrls = new CRecentFileList('0', L"Recent URL List", L"%d", 5, URL_MRU_ENTRY_LEN);
m_pRecentUrls->ReadList();

1 个答案:

答案 0 :(得分:3)

MFC中的最新文件列表保留在CRecentFileList* CWinApp::m_pRecentFileList中。您可以通过以下索引访问它:

CString CMyApp::GetRecentFile( int index ) const  
{  
    return (*m_pRecentFileList)[ index ];  
}