Is there any way to do so? I know its possible to programmatically eject/retract the cd drive SOMEHOW, cause Roxio does that when it prompts me to insert a disk.

Either c# or vb.net is preferable, but c and c++ are okay too as a last resort.

I am nearly positive there is some way to do this, I just don't know the methods to call.

I do understand this is a somewhat unusual request, as Google yielded absolutely nothing when I searched for the methods...

link|improve this question

3  
"Google yielded absolutely nothing"!! Oh, come on, typing "c# eject cd" yields pretty much all you need in the first result. – Darin Dimitrov Sep 19 '09 at 20:14
2  
Well then your question should have been different. For example: I've tried the following code... for ejecting the CD but it threw the following exception... – Darin Dimitrov Sep 19 '09 at 20:19
2  
Are you making a cuckoo clock? ;) – Kirschstein Sep 19 '09 at 20:40
1  
Actually, kinda lol. – Cyclone Sep 19 '09 at 21:09
1  
@Darin: Googling "c# eject cd" brought me here, where I got you telling me to Google "c# eject cd". How recursive. – HiredMind Aug 10 '11 at 4:15
show 2 more comments
feedback

2 Answers

up vote 6 down vote accepted

http://www.geekpedia.com/tutorial174_Opening-and-closing-the-CD-tray-in-.NET.html

link|improve this answer
K, now how to do it in vb? Thanks for answering the c# part!!!! – Cyclone Sep 19 '09 at 20:18
You might try googling "vb.net eject cd". – Darin Dimitrov Sep 19 '09 at 20:24
Converted to VB, got it!!!!!!!! – Cyclone Sep 19 '09 at 20:24
1  
You also might try looking up the definition of "either..or", as in "Either c# or vb is preferable..." – RBarryYoung Sep 19 '09 at 20:54
feedback

Here's an alternative solution to the accepted one, converted from a VB.NET sample:

using System;
using System.IO;
using System.Runtime.InteropServices;

class Test
{
    const int OPEN_EXISTING = 3;
    const uint GENERIC_READ = 0x80000000;
    const uint GENERIC_WRITE = 0x40000000;
    const uint IOCTL_STORAGE_EJECT_MEDIA = 2967560;

    [DllImport("kernel32")]
    private static extern IntPtr CreateFile
        (string filename, uint desiredAccess, 
         uint shareMode, IntPtr securityAttributes,
         int creationDisposition, int flagsAndAttributes, 
         IntPtr templateFile);

    [DllImport("kernel32")]
    private static extern int DeviceIoControl
        (IntPtr deviceHandle, uint ioControlCode, 
         IntPtr inBuffer, int inBufferSize,
         IntPtr outBuffer, int outBufferSize, 
         ref int bytesReturned, IntPtr overlapped);

    [DllImport("kernel32")]
    private static extern int CloseHandle(IntPtr handle);

    static void EjectMedia(char driveLetter)
    {
        string path = "\\\\.\\" + driveLetter + ":";
        IntPtr handle = CreateFile(path, GENERIC_READ | GENERIC_WRITE, 0, 
                                   IntPtr.Zero, OPEN_EXISTING, 0,
                                   IntPtr.Zero);
        if ((long) handle == -1)
        {
            throw new IOException("Unable to open drive " + driveLetter);
        }
        int dummy = 0;
        DeviceIoControl(handle, IOCTL_STORAGE_EJECT_MEDIA, IntPtr.Zero, 0, 
                        IntPtr.Zero, 0, ref dummy, IntPtr.Zero);
        CloseHandle(handle);
    }

    static void Main()
    {
        EjectMedia('f');
    }
}
link|improve this answer
That's the best idea. It assumes things on the hardware. What if your hardware has special driver for eject? You'd better use the Shell eject function, which will make your code shorter and more general. – Elazar Leibovich Jun 16 '10 at 15:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.