I can easily get the media type of an inserted writable medium by using IMAPI methods in C#. Unfortunately, these methods do not work when I have a readonly medium. I would like to learn a way to figure what type of medium is inserted in my drive. Maybe I can figure this out by reading total sector size of a disc.

Can anyone help?

link|improve this question

50% accept rate
feedback

1 Answer

Can you use p/invoke with the SHChangeNotifyRegister function:

    [DllImport("shell32.dll", SetLastError=true, EntryPoint="#2", CharSet=CharSet.Auto)]
static extern UInt32 SHChangeNotifyRegister(
            IntPtr hWnd,
            SHCNF fSources,
            SHCNE fEvents,
            uint wMsg,
            int cEntries,
            ref SHChangeNotifyEntry pFsne);

You can listen for the SHCNE_MEDIAINSERTED event but as far as detecting what type of medium it is, I'm not really sure but there's probably another extern function you can call to get that info.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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