vote up 1 vote down star

Hello, I'm looking for a C# code snippet to give me a notification for when a USB drive is plugged into my PC in Windows Vista (or win7)

flag

3 Answers

vote up 7 vote down check

There's a class called DriveDetector over at Codeproject that sounds like it does what you want.

link|flag
vote up 0 vote down

I know this is not exactly what you asked for, but if you want to check what devices are available at any moment in time, there's another way. You can use the WMI classes in the System.Management namespace, I've used this method and it works well.

If you take a look at this answer, it shows how to enumerate all the drives on the system. You can then take a look at the drive type to determine whether or not it's a USB stick.

link|flag
vote up 2 vote down

Look at WM_DEVICECHANGE. This message should be sent when a drive is inserted.

link|flag

Your Answer

Get an OpenID
or

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