I'm trying to detect if a DVD-RAM media is empty or not, with C++ on Windows. The simplest choice is to use IMAPI (version 2) - boilerplate code omitted:

IMAPI_FORMAT2_DATA_MEDIA_STATE state;
HRESULT hr;

// ... Initialize an MsftDiscFormat2Data COM object and put recorder

hr = format->get_CurrentMediaStatus( &state );
// ... Verify returned status ...    
return (state & IMAPI_FORMAT2_DATA_MEDIA_STATE_BLANK);

This code usually works perfectly. However, with DVD-RAM it gives the wrong results: the only flag enabled in the returned state is IMAPI_FORMAT2_DATA_MEDIA_STATE_OVERWRITE_ONLY ( = 0x1). On Windows Vista 32 bit it works as expected.

Does anyone knows the reason for this result? Is there any workaround?

link|improve this question
Interesting: I tried to go the hard way, and directly sent the device an IOCTL_SCSI_PASS_THROUGH with SCSIOP_READ_DISC_INFORMATION request. The information I got there was consistent with the results from IMAPI: the media is not marked as blank. – Itaypk Jul 12 '11 at 7:21
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.