What language or method would I use to listen to the event when a removeable drive is plugged into the PC?

link|improve this question

33% accept rate
feedback

3 Answers

up vote 2 down vote accepted

I guess any language that can work with the Windows API should do. Basically, you listen to the windows message WM_DEVICECHANGE. This alone will let you listen to system-wide messages.

For more specific scenarios look at the API function RegisterDeviceNotification(). Needless to day, C/C++ would be straightforward for this task.

link|improve this answer
feedback

Is your program going to be running as a windows service and waiting? or is putting a startup script on the removable drive an option in this case?

link|improve this answer
Windows XP doesn't allow autorun's for removable devices. – LOGIC9 Oct 2 '08 at 7:57
It does. My pendrive has autorun on it and works like a charm (I'm using PortableApps). – Biri Oct 2 '08 at 8:02
Really? It comes up with an 'autorun' dialog which allows you to select the action, but doesn't actually have any automatic file executions – LOGIC9 Oct 2 '08 at 15:11
feedback

This article on codeproject.com is in C++, and has a solution using the shell change notify register function.

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.