CWinApp::AddToRecentFileList

调用此成员函数添加 lpszPathName 到MRU文件列表。

virtual void AddToRecentFileList(
   LPCTSTR lpszPathName 
);

参数

  • lpszPathName
    文件的路径。

备注

在使用该成员函数之前,应调用 LoadStdProfileSettings 成员函数加载当前MRU文件列表。

在打开文件或执行另存为"命令保存具有新名称的时,一个文件框架调用该成员函数。

示例

// This adds the pathname c:\temp\test.doc to the top of
// the most recently used (MRU) list in the File menu.
AfxGetApp()->AddToRecentFileList(_T("c:\\temp\\test.doc"));

要求

Header: afxwin.h

请参见

参考

CWinApp选件类

层次结构图

CWinApp::LoadStdProfileSettings