Click here to Skip to main content
15,884,237 members
Articles / Desktop Programming / MFC

Using the Shell to Receive Notification of Removable Media Being Inserted or Removed

Rate me:
Please Sign up or sign in to vote.
5.00/5 (12 votes)
20 Nov 20021 min read 188.9K   55   36
Uses the poorly documented SHChangeNotifyRegister function to receive notification upon shell events

Introduction

Recently, I needed to determine when removable media, such as a zip disk or media card, had been inserted by the user.

I initially looked into the WM_DEVICECHANGE broadcast message only to realise this supports CDROMs and little else. Fortunately, there is another way via the shell, through the scarcely documented SHChangeNotifyRegister function.

We can register to be informed by the shell when certain events of interest occur. The events are numerous - covering when a drive is added or removed, files are renamed, etc. However of particular interest here are the notifications for media being inserted or removed.

It's scarcely rocket science but piecing the various bits of information together to utilise this functionality took far longer than it should have. I was amazed there was no article here on CodeProject covering this, so figured I should rectify that!

Implementation

You will need the following includes and definition:

C++
#include <shlobj.h>
#define WM_USER_MEDIACHANGED WM_USER+88

Together with a member variable to release the request later:

C++
ULONG m_ulSHChangeNotifyRegister;

Nullify the member variable in your constructor, then register to be notified by the shell (perhaps in OnInitDialog for example):

C++
CMyWnd::CMyWnd()
{
    ulSHChangeNotifyRegister = NULL;
}

BOOL CMyWnd::OnInitDialog() 
{
    CWnd::OnInitDialog();

    // Request notification from shell of media insertion -
    // allows us to detect removable media or a multimedia card
    HWND hWnd = GetSafeHwnd();
    LPITEMIDLIST ppidl;
    if(SHGetSpecialFolderLocation(hWnd, CSIDL_DESKTOP, &ppidl) == NOERROR)
    {
        SHChangeNotifyEntry shCNE;
        shCNE.pidl = ppidl;
        shCNE.fRecursive = TRUE;

        // Returns a positive integer registration identifier (ID).
        // Returns zero if out of memory or in response to invalid parameters.
        m_ulSHChangeNotifyRegister = SHChangeNotifyRegister(hWnd,  
                                          // Hwnd to receive notification
                SHCNE_DISKEVENTS,                          
                                          // Event types of interest (sources)
                SHCNE_MEDIAINSERTED|SHCNE_MEDIAREMOVED,    
                                          // Events of interest - use 
                                          // SHCNE_ALLEVENTS for all events
                WM_USER_MEDIACHANGED,     
                                          // Notification message to be sent 
                                          // upon the event
                1,                         
                                          // Number of entries in the pfsne array
                &shCNE);  // Array of SHChangeNotifyEntry structures that 
                          // contain the notifications. This array should 
                          // always be set to one when calling SHChnageNotifyRegister
                          // or SHChangeNotifyDeregister will not work properly.
    
        ASSERT(m_ulSHChangeNotifyRegister != 0);    // Shell notification failed
    }
    else
        ASSERT(FALSE);    // Failed to get desktop location
}

Add a message handler to your message map for the notification message:

C++
ON_MESSAGE(WM_USER_MEDIACHANGED, OnMediaChanged)

Together with the corresponding declaration:

C++
afx_msg LRESULT OnMediaChanged(WPARAM, LPARAM);

Then deal with the message as desired:

C++
// The lParam value contains the event SHCNE_xxxx
// The wParam value supplies the SHNOTIFYSTRUCT

typedef struct {
    DWORD dwItem1;    // dwItem1 contains the previous PIDL or name of the folder. 
    DWORD dwItem2;    // dwItem2 contains the new PIDL or name of the folder. 
} SHNOTIFYSTRUCT;

LRESULT CMyWnd::OnMediaChanged(WPARAM wParam, LPARAM lParam)
{
    SHNOTIFYSTRUCT *shns = (SHNOTIFYSTRUCT *)wParam;
    CString strPath, strMsg;

    switch(lParam)
    {
        case SHCNE_MEDIAINSERTED:        // media inserted event
        {
            strPath = GetPathFromPIDL(shns->dwItem1);
            if(!strPath.IsEmpty())
            {
                // Process strPath as required, for now a simple message box
                strMsg.Format("Media inserted into %s", strPath);
                AfxMessageBox(strMsg);
            }
        }
        case SHCNE_MEDIAREMOVED:        // media removed event
        {
            strPath = GetPathFromPIDL(shns->dwItem1);
            if(!strPath.IsEmpty())
            {
                // Process strPath as required, for now a simple message box
                strMsg.Format("Media removed from %s", strPath);
                AfxMessageBox(strMsg);
            }
        }
        //case SHCNE_xxxx:  Add other events processing here
    }
    return NULL;
}

CString CMyWnd::GetPathFromPIDL(DWORD pidl)
{
    char sPath[MAX_PATH];
    CString strTemp = _T("");
    if(SHGetPathFromIDList((struct _ITEMIDLIST *)pidl, sPath))
        strTemp = sPath;
    
    return strTemp;
}

Finally, deregister your request when no longer required:

C++
void CMyWnd::OnDestroy() 
{
    if(m_ulSHChangeNotifyRegister)
        VERIFY(SHChangeNotifyDeregister(m_ulSHChangeNotifyRegister));

    CWnd::OnDestroy();    
}

References

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
Software Developer
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: for reference (slightly off topic) Pin
Anonymous3-Jun-04 2:11
Anonymous3-Jun-04 2:11 
GeneralRe: for reference (slightly off topic) Pin
Obliterator3-Jun-04 3:07
Obliterator3-Jun-04 3:07 
GeneralNice! Pin
Ravi Bhavnani21-Nov-02 7:01
professionalRavi Bhavnani21-Nov-02 7:01 
GeneralWin2K minimum Pin
Thomas Freudenberg21-Nov-02 5:24
Thomas Freudenberg21-Nov-02 5:24 
GeneralRe: Win2K minimum Pin
Wouter Dhondt21-Nov-02 5:38
Wouter Dhondt21-Nov-02 5:38 
GeneralRe: Win2K minimum Pin
Thomas Freudenberg21-Nov-02 5:54
Thomas Freudenberg21-Nov-02 5:54 
GeneralRe: Win2K minimum Pin
Wouter Dhondt21-Nov-02 6:03
Wouter Dhondt21-Nov-02 6:03 
GeneralRe: Win2K minimum Pin
Obliterator21-Nov-02 15:13
Obliterator21-Nov-02 15:13 
GeneralRe: Win2K minimum Pin
Anonymous16-Feb-03 18:04
Anonymous16-Feb-03 18:04 
GeneralRe: Win2K minimum Pin
NorthernRail14-Dec-04 5:41
NorthernRail14-Dec-04 5:41 
GeneralRe: Win2K minimum Pin
Obliterator14-Dec-04 7:09
Obliterator14-Dec-04 7:09 

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.