Click here to Skip to main content
15,867,686 members
Articles / Desktop Programming / MFC
Article

Remembering the last folder used by Open/Save Common dialogs

Rate me:
Please Sign up or sign in to vote.
4.00/5 (4 votes)
8 Feb 2001 81.8K   19   15
How applications determine the last visited folders for Open/Save Common Dialogs in Win2K.

Sample Image - tipoftheday.gif

Introduction

This article content only applies to Microsoft Windows 2000.

One day when I had nothing to do (usual for me), I found the strange behavior of Common Dialogs. Every time I open Notepad and try to open a file, it brings up the last visited folder (see above picture). Like all other people, I know applications keep track of most recently opened files, while they are running; that's not the case if they started from beginning. Simple, they might store this information in registry or any binary file. First I started searching registry entries specific to those applications, with no success.

Suddenly an idea sparkled in my mind, why wouldn't I search the name of last visited folder in registry. This didn't work for me. So I gave up.

One day, accidentally, I found the following registry key:

HKEY_CURRENT_USER\Software\Microsoft\Windows\
   CurrentVersion\Explorer\ComDlg32\LastVisitedMRU

This key has a string value MRUList that contains alphabets (abcdefg). Including this string value, there are as many binary values as number of alphabets in MRUList.

These binary values contain path of last visited folder followed by name of that application. If you change the path, you will get the desired results.

Try it at your own risk :)

Revision history

  • 20 Jun 2002 - Fixed image

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Pakistan Pakistan
Mumtaz Zaheer is working as Senior System Analyst with Information Architects, Pakistan (http://www.info-architects.com/).

Comments and Discussions

 
GeneralNice Article Mumtaz.d Pin
Zsdg asdg ajsgd28-Oct-10 21:17
Zsdg asdg ajsgd28-Oct-10 21:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.