vote up 8 vote down star
2

The title pretty much says it all. I'm just concerned about Windows, so there's no need to go into esoterica about Mono compatibility or anything like that.

I should also add that the app that I'm writing is WPF, and I'd prefer to avoid taking a dependency on System.Windows.Forms if at all possible.

flag
Are we talking about a USB port? – Josh Stodola Nov 7 '08 at 4:26
A USB drive would be an example of a removable disk, but Windows generally treats them the same as optical drives and the like when it comes to events. – David Mitchell Nov 7 '08 at 4:38

4 Answers

vote up 7 vote down check

Give this a shot...

using System;
using System.Collections.Generic;
using System.Text;
using System.Management;

namespace WMITestConsolApplication
{

    class Program
    {

    	static void Main(string[] args)
    	{

    		AddInsertUSBHandler();
    		AddRemoveUSBHandler();
    		while (true) {
    		}

    	}

    	static ManagementEventWatcher w = null;

    	static void AddRemoveUSBHandler()
    	{

    		WqlEventQuery q;
    		ManagementScope scope = new ManagementScope("root\\CIMV2");
    		scope.Options.EnablePrivileges = true;

    		try {

    			q = new WqlEventQuery();
    			q.EventClassName = "__InstanceDeletionEvent";
    			q.WithinInterval = new TimeSpan(0, 0, 3);
    			q.Condition = "TargetInstance ISA 'Win32_USBControllerdevice'";
    			w = new ManagementEventWatcher(scope, q);
    			w.EventArrived += USBRemoved;

    			w.Start();
    		}
    		catch (Exception e) {


    			Console.WriteLine(e.Message);
    			if (w != null)
    			{
    				w.Stop();

    			}
    		}

    	}

    	static void AddInsertUSBHandler()
    	{

    		WqlEventQuery q;
    		ManagementScope scope = new ManagementScope("root\\CIMV2");
    		scope.Options.EnablePrivileges = true;

    		try {

    			q = new WqlEventQuery();
    			q.EventClassName = "__InstanceCreationEvent";
    			q.WithinInterval = new TimeSpan(0, 0, 3);
    			q.Condition = "TargetInstance ISA 'Win32_USBControllerdevice'";
    			w = new ManagementEventWatcher(scope, q);
    			w.EventArrived += USBInserted;

    			w.Start();
    		}
    		catch (Exception e) {

    			Console.WriteLine(e.Message);
    			if (w != null)
    			{
    				w.Stop();

    			}
    		}

    	}

    	static void USBInserted(object sender, EventArgs e)
    	{

    		Console.WriteLine("A USB device inserted");

    	}

    	static void USBRemoved(object sender, EventArgs e)
    	{

    		Console.WriteLine("A USB device removed");

    	}
    }

}
link|flag
What assembly is the ManagementEventWatcher in? – David Mitchell Nov 7 '08 at 4:36
System.Management, according to this MSDN article: msdn.microsoft.com/en-us/library/… – amdfan Nov 7 '08 at 4:38
Looks like it is in System.Management.dll - msdn.microsoft.com/en-us/library/… – Todd White Nov 7 '08 at 4:39
@amdfan: Jinx you owe me a coke! ;) – Todd White Nov 7 '08 at 4:40
@Josh: might I recommend that you rename the "AddInsetUSBHandler" to "AddInsertUSBHandler"? – David Mitchell Nov 7 '08 at 4:47
show 2 more comments
vote up 6 vote down

There are much less cumbersome ways of doing this than using WMI polling - just capture WM_DEVICECHANGE:

http://msdn.microsoft.com/en-us/library/aa363215.aspx

link|flag
vote up 0 vote down

The simplest way would be to create an Autoplay Handler:

http://www.codeproject.com/KB/system/AutoplayDemo.aspx

Autoplay Version 2 is a feature in Windows XP that will scan the first four levels of a removable media, when it arrives, looking for media content types (music, graphics, or video). Registration of applications is done on a content type basis. When a removable media arrives, Windows XP determines what actions to perform by evaluating the content and comparing it to registered handlers for that content.

A detailed MSDN article is also available.

link|flag
That's pretty cool, but I'm really just looking for something that will operate while my software is running. Thanks, though. – David Mitchell Nov 7 '08 at 4:37
vote up 0 vote down

Hello....... that is very nice. but, I am getting 3 Event arrived and i have just insert one usb device.....why is this.

link|flag

Your Answer

Get an OpenID
or

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