Open most recent file (3) | CodeGuru

Open most recent file (3)

This code sniplet will cause your program to open the last saved file when it is reopened. If the last saved file still exists that is. This code differs from the other open recent file code examples because it shows an alternate method of obtaining the last MRU. We also take into account if the […]

Written By
CodeGuru Staff
CodeGuru Staff
Aug 7, 1998
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

This code sniplet will cause your program to open the last saved file when
it is reopened. If the last saved file still exists that is.

This code differs from the other open recent file code examples because
it shows an alternate method of obtaining the last MRU. We also take into
account if the most recently saved file still exists (after all it may
not).

I have no way to test if this will work with UNICODE, however it SHOULD. (:

This was compiled with VC5 and MFC4.2. Tested on Win95 OSR2 (no IE4
integration). This code should compile cleanly under warning level 4.

I originally started out using m_pRecentFileList however in my SDI test app
m_pRecentFileList wasn’t valid. So, I
put in what I’ve been using for ages in one of my other apps. (:

To make your program open the last saved file when it restarts, simply add
the following code directly above the:
if (!ProcessShellCommand(cmdInfo))
. (assuming an appwizard generated
source file.) line in your app’s InitInstance() function. (in the <appname>.cpp file)

The Code…

//////////////////////////////////////////////////////////////
//  //  //  //  //  //  //  //  //  //  //  //  //  //  //  //
//////////////////////////////////////////////////////////////
// Put this block directly before ....
//    // Dispatch commands specified on the command line
//    if (!ProcessShellCommand(cmdInfo))
//        return FALSE;
// ie. after cmdInfo is defined and initialized and before it is used...
    // -------------------------------------------------------------------
    // Open the most recently saved file. (First on the MRU list.)
    CString strLastPath = GetProfileString(_T("Recent File List"),_T("File1"),_T("<<NONE>>") );  // get the last file from the registry...
    if( strLastPath != _T("<<NONE>>")       // If we were able to get the last saved file.
     && cmdInfo.m_nShellCommand == CCommandLineInfo::FileNew
//     && bLoadLast                       // and we want to load the last!
      )
//we need not account for cmdInfo.m_bRunAutomated and cmdInfo.m_bRunEmbedded as they are processed before we get here...
    {
        CFile f;
        if(f.Open(strLastPath, CFile::modeRead) )
        {                               // file is there, set to open!
            cmdInfo.m_nShellCommand = CCommandLineInfo::FileOpen;
            cmdInfo.m_strFileName = strLastPath;
            TRACE1(_T("*OpenLastFile: Setting Vars to Load Last File (%s)n"), cmdInfo.m_strFileName);
        }
        else
        {                               // File doesn't Exist, So, Create New.
            cmdInfo.m_nShellCommand = CCommandLineInfo::FileNew;  // should be redundant, but what the heck.
            TRACE0(_T("*OpenLastFile: Setting Vars to FileNewn") );
        }
    }
//////////////////////////////////////////////////////////////
//  //  //  //  //  //  //  //  //  //  //  //  //  //  //  //
//////////////////////////////////////////////////////////////


Questions and comments are always welcome!


Happy Codeing! (btw, why is a program listing called source code now? 😛 )

Last updated: 6 July 1998

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.