vote up 2 vote down star

Regarding the Windows platform, is their an event I can look for to tell when a USB drive or any type of portable media us plugged in?

flag

2 Answers

vote up 5 vote down

You won't get such notifications without first registering for them. Use RegisterDeviceNotification() to do that.

After you have registered your window to receive such notifications, handle the WM_DEVICECHANGE message.

link|flag
Is this the only way? – drcc May 31 at 5:54
the only way I know of. – Stefan May 31 at 6:34
-1, doesn't work because it's not needed. QUoting the linked MSDN article: "Volume notifications are broadcast to top-level windows, so the function fails if dbch_devicetype is DBT_DEVTYP_VOLUME". USB drives (implementing Mass Storage profile) are volumes. – MSalters Jul 2 at 15:54
vote up 1 vote down

Even though this article is about Qt, the code in the answer is relevant here.

link|flag

Your Answer

Get an OpenID
or

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