Click here to Skip to main content
15,878,748 members
Articles / Desktop Programming / MFC
Article

Open or Close a CD/DVD Drive Drawer

Rate me:
Please Sign up or sign in to vote.
4.84/5 (15 votes)
27 Mar 20071 min read 83.8K   1.3K   31   16
Provides a sample project with code to open and/or close a CD or DVD drive drawer.

Screenshot - CDOpen1.jpg

Introduction

This project demonstrates how to open and close a CD or DVD drive drawer. It also works on the new Blu-ray drive I got recently.

Background

I needed a way to open and/or close a drive drawer without regard to whether or not the drawer was already open or closed. This sounds easy, but most of the ways of doing this I tried (like using the MCI library) and I had problems determining whether or not the drawer was open or closed. Using this code, I just tell it what I want it to do. If it's already open, it stays open; if it's closed, it stays closed.

Using the code

There is nothing fancy in this code. Users can simply cut and paste the code needed from this sample into their own projects. This uses a fairly simple IOCTL call. Note: the function returns whether or not the call worked, but this is not necessarily the result the caller intended. For example, most notebook computers will report that a drive is closed, but the drive must be closed manually. Programmers can get around this by detecting that the disc is not ready in the drive.

// Opens or closes the CD or DVD drive specified in drive letter.
bool COpenCloseCDDlg::OpenCloseTray(bool bOpen, TCHAR cDrive)
{
    // Open the device (drive) that we want to affect
    CString cs;
    cs.Format(_T("\\\\.\\%c:"),cDrive);
    HANDLE hDrive = CreateFile(cs, GENERIC_READ, FILE_SHARE_READ, 
                               NULL, OPEN_EXISTING, 
    FILE_ATTRIBUTE_NORMAL, NULL);

    // Make sure the device was found and opened successfully
    if(hDrive == INVALID_HANDLE_VALUE || GetLastError() != NO_ERROR)
        return false;

    BOOL bStatus; // Let the caller know if it worked or not
    DWORD dwDummy; // We don't really need this info
    if(bOpen) // Open the tray
        bStatus = DeviceIoControl(hDrive, IOCTL_STORAGE_EJECT_MEDIA, NULL, 
                                  0, NULL, 0, &dwDummy, NULL);
    else // Close the tray
        bStatus = DeviceIoControl(hDrive, IOCTL_STORAGE_LOAD_MEDIA, 
                                  NULL, 0, NULL, 0, &dwDummy, NULL);
    CloseHandle(hDrive);
    return bStatus?true:false;
}

History

  • Version 1.0 - March 28, 2007

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 (Senior)
United States United States
I have been using VC++ with MFC since it first came out circa 1993 and I saw it demonstrated at a local Software Development show. I've been working for Rimage Corporation for around 23 years developing software to make our CD and DVD publishing hardware work.

When I'm not working I enjoy hanging out with my family, playing guitar, traveling, and taking my dogs for walks. My family enjoys watching Survivor on Thursday nights and we're not even embarassed by it.

Comments and Discussions

 
QuestionThanks Pin
String Sharp19-Jun-12 1:19
String Sharp19-Jun-12 1:19 
Generalvery good Pin
jxy3331625-Sep-08 2:29
jxy3331625-Sep-08 2:29 
GeneralI want to Try it but ..... Pin
allooba6-Nov-07 19:56
allooba6-Nov-07 19:56 
GeneralRe: I want to Try it but ..... Pin
Thomas Serface7-Nov-07 4:06
Thomas Serface7-Nov-07 4:06 
GeneralRe: I want to Try it but ..... Pin
allooba7-Nov-07 20:57
allooba7-Nov-07 20:57 
GeneralRe: I want to Try it but ..... Pin
Thomas Serface9-Nov-07 6:32
Thomas Serface9-Nov-07 6:32 
GeneralRe: I want to Try it but ..... Pin
allooba10-Nov-07 23:24
allooba10-Nov-07 23:24 
GeneralRe: I want to Try it but ..... Pin
Thomas Serface11-Nov-07 18:05
Thomas Serface11-Nov-07 18:05 
GeneralRe: I want to Try it but ..... Pin
Thomas Serface12-Nov-07 3:49
Thomas Serface12-Nov-07 3:49 
Answeropen - close Pin
Sobirari Muhomori15-May-07 3:31
Sobirari Muhomori15-May-07 3:31 
GeneralRe: open - close Pin
Thomas Serface15-May-07 3:52
Thomas Serface15-May-07 3:52 
AnswerRe: open - close Pin
Sobirari Muhomori21-May-07 1:59
Sobirari Muhomori21-May-07 1:59 
GeneralRe: open - close Pin
Thomas Serface21-May-07 3:32
Thomas Serface21-May-07 3:32 
GeneralGood Job Pin
Daniel Vlasceanu5-Apr-07 19:08
Daniel Vlasceanu5-Apr-07 19:08 
GeneralGood work Pin
Emil - Gabriel28-Mar-07 2:56
Emil - Gabriel28-Mar-07 2:56 
GeneralRe: Good work Pin
Thomas Serface28-Mar-07 3:50
Thomas Serface28-Mar-07 3:50 

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.