473,378 Members | 1,510 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

How can I detect cdrom/usb device insertions?

I am writing a C# app that needs to periodically poll for cdroms and usb
storage device insertions. I've looked at the WMI functions but haven't
found anything all that useful. The closest is Win32_DiskDrive, but it
doesn't seem to return any information on cdrom devices. I suspect there
might be a Win32 API call, but I haven't found any info yet using Google. Is
there a way to achieve this in C#?

Nov 16 '05 #1
9 37137
Paul,

Have a look at this CodeProject article:
http://www.codeproject.com/dotnet/de...umemonitor.asp

Alexander

"Paul Steele" <pa*********@acadiau.ca> wrote in message
news:uA**************@TK2MSFTNGP12.phx.gbl...
I am writing a C# app that needs to periodically poll for cdroms and usb
storage device insertions. I've looked at the WMI functions but haven't
found anything all that useful. The closest is Win32_DiskDrive, but it
doesn't seem to return any information on cdrom devices. I suspect there
might be a Win32 API call, but I haven't found any info yet using Google.
Is there a way to achieve this in C#?

Nov 16 '05 #2
Hi,
I'm not sure whether you can do it in C#, i.e you have any direct classes
for this, but you have Win32 API's for detecting the cdroms insertions. The
following data may be helpful to you. Courtesy, MSDN

Detecting Media Insertion or Removal
Windows sends all top-level windows a set of default WM_DEVICECHANGE
messages when new devices or media (such as a CD or DVD) are added and become
available, and when existing devices or media are removed. You do not need to
register to receive these default messages. See the Remarks section in
RegisterDeviceNotification for details on which messages are sent by default.
The messages in the code example below are among the default messages.

Each WM_DEVICECHANGE message has an associated event that describes the
change, and a structure that provides detailed information about the change.
The structure consists of an event-independent header, DEV_BROADCAST_HDR,
followed by event-dependent members. The event-dependent members describe the
device to which the event applies. To use this structure, applications must
first determine the event type and the device type. Then, they can use the
correct structure to take appropriate action.
When the user inserts a new CD or DVD into a drive, applications receive a
WM_DEVICECHANGE message with a DBT_DEVICEARRIVAL event. The application must
check the event to ensure that the type of device arriving is a volume (the
dbch_devicetype member is DBT_DEVTYP_VOLUME) and that the change affects the
media (the dbcv_flags member is DBTF_MEDIA).

When the user removes a CD or DVD from a drive, applications receive a
WM_DEVICECHANGE message with a DBT_DEVICEREMOVECOMPLETE event. Again, the
application must check the event to ensure that the device being removed is a
volume and that the change affects the media.

The following code demonstrates how to check for insertion or removal of a
CD or DVD.
#include <windows.h>
#include <dbt.h>

void Main_OnDeviceChange (HWND hwnd, WPARAM wParam, LPARAM lParam);
char FirstDriveFromMask (ULONG unitmask); //prototype

/*------------------------------------------------------------------
Main_OnDeviceChange (hwnd, wParam, lParam)

Description
Handles WM_DEVICECHANGE messages sent to the application's
top-level window.
--------------------------------------------------------------------*/

void Main_OnDeviceChange (HWND hwnd, WPARAM wParam, LPARAM lParam)
{
PDEV_BROADCAST_HDR lpdb = (PDEV_BROADCAST_HDR)lParam;
char szMsg[80];

switch(wParam)
{
case DBT_DEVICEARRIVAL:
// Check whether a CD or DVD was inserted into a drive.
if (lpdb -> dbch_devicetype == DBT_DEVTYP_VOLUME)
{
PDEV_BROADCAST_VOLUME lpdbv = (PDEV_BROADCAST_VOLUME)lpdb;

if (lpdbv -> dbcv_flags & DBTF_MEDIA)
{
wsprintf (szMsg, "Drive %c: Media has arrived.\n",
FirstDriveFromMask(lpdbv ->dbcv_unitmask));

MessageBox (hwnd, szMsg, "WM_DEVICECHANGE", MB_OK);
}
}
break;

case DBT_DEVICEREMOVECOMPLETE:
// Check whether a CD or DVD was removed from a drive.
if (lpdb -> dbch_devicetype == DBT_DEVTYP_VOLUME)
{
PDEV_BROADCAST_VOLUME lpdbv = (PDEV_BROADCAST_VOLUME)lpdb;

if (lpdbv -> dbcv_flags & DBTF_MEDIA)
{
wsprintf (szMsg, "Drive %c: Media was removed.\n",
FirstDriveFromMask(lpdbv ->dbcv_unitmask));

MessageBox (hwnd, szMsg, "WM_DEVICECHANGE", MB_OK);
}
}
break;

default:
/*
Process other WM_DEVICECHANGE notifications for other
devices or reasons.
*/
;
}
}

/*------------------------------------------------------------------
FirstDriveFromMask (unitmask)

Description
Finds the first valid drive letter from a mask of drive letters.
The mask must be in the format bit 0 = A, bit 1 = B, bit 3 = C,
etc. A valid drive letter is defined when the corresponding bit
is set to 1.

Returns the first drive letter that was found.
--------------------------------------------------------------------*/

char FirstDriveFromMask (ULONG unitmask)
{
char i;

for (i = 0; i < 26; ++i)
{
if (unitmask & 0x1)
break;
unitmask = unitmask >> 1;
}

return (i + 'A');
}

Pradeep Kumar.R

"Paul Steele" wrote:
I am writing a C# app that needs to periodically poll for cdroms and usb
storage device insertions. I've looked at the WMI functions but haven't
found anything all that useful. The closest is Win32_DiskDrive, but it
doesn't seem to return any information on cdrom devices. I suspect there
might be a Win32 API call, but I haven't found any info yet using Google. Is
there a way to achieve this in C#?

Nov 16 '05 #3
This is definitely a good starting point. Unfortunately it does not detect
USB key insertions...

"Alexander Shirshov" <al*******@omnitalented.com> wrote in message
news:ef**************@TK2MSFTNGP09.phx.gbl...
Paul,

Have a look at this CodeProject article:
http://www.codeproject.com/dotnet/de...umemonitor.asp

Alexander

"Paul Steele" <pa*********@acadiau.ca> wrote in message
news:uA**************@TK2MSFTNGP12.phx.gbl...
I am writing a C# app that needs to periodically poll for cdroms and usb
storage device insertions. I've looked at the WMI functions but haven't
found anything all that useful. The closest is Win32_DiskDrive, but it
doesn't seem to return any information on cdrom devices. I suspect there
might be a Win32 API call, but I haven't found any info yet using Google.
Is there a way to achieve this in C#?


Nov 16 '05 #4
Read the comments at the bottom.

"Paul Steele" <pa*********@acadiau.ca> wrote in message
news:en****************@TK2MSFTNGP10.phx.gbl...
This is definitely a good starting point. Unfortunately it does not detect
USB key insertions...


Nov 16 '05 #5
I presume you are referring to the comment:

"The first one is dbcv_flags. This field will tell us the nature of the
volume that was mounted (or dismounted). It can be either a media volume
like a CD (the flag will have a DBTF_MEDIA flag) or a network share
(DBTF_NET). In this case we will only be interested in filtering the
DBTF_MEDIA value. The other field is dbcv_unitmask, which is a bit vector
that tells us which drive letters were mounted."

If I remove the check for DBTF_MEDIA in the code, then it does detect USB
keys. Unfortunately it also detects network share mounts. There doesn't seem
to be a differentiation between a USB Key and network media. Am I
overlooking something?

"Alexander Shirshov" <al*******@omnitalented.com> wrote in message
news:e9**************@TK2MSFTNGP09.phx.gbl...
Read the comments at the bottom.

"Paul Steele" <pa*********@acadiau.ca> wrote in message
news:en****************@TK2MSFTNGP10.phx.gbl...
This is definitely a good starting point. Unfortunately it does not
detect USB key insertions...

Nov 16 '05 #6

"Paul Steele" <pa*********@acadiau.ca> wrote in message
news:uA**************@TK2MSFTNGP12.phx.gbl...
I am writing a C# app that needs to periodically poll for cdroms and usb
storage device insertions. I've looked at the WMI functions but haven't
found anything all that useful. The closest is Win32_DiskDrive, but it
doesn't seem to return any information on cdrom devices. I suspect there
might be a Win32 API call, but I haven't found any info yet using Google.
Is there a way to achieve this in C#?


Use 'Win32_LogicalDisk' instead of Win32_DiskDrive and register a
asynchronous event handler for __InstanceModificationEvent, something like
this will do.

using System.Management;
class TestClass{
public static void Main() {
TestClasswe = new TestClass();
ManagementEventWatcher w= null;
WqlEventQuery q = new WqlEventQuery();
ManagementScope scope = new ManagementScope("root\\CIMV2");
try {
q.EventClassName = "__InstanceModificationEvent";
q.WithinInterval = new TimeSpan(0,0,3);
// DriveType - 5: CDROM
q.Condition = @"TargetInstance ISA 'Win32_LogicalDisk' and
TargetInstance.DriveType = 5 and TargetInstance.VolumeName != null";
w = new ManagementEventWatcher(scope, q);
// register async. event handler
w.EventArrived += new EventArrivedEventHandler(we.CDREventArrived);
w.Start();
// Do something usefull,block thread for testing
Console.ReadLine();
}
catch(Exception e) {
Console.WriteLine(e.Message);
}
finally {
w.Stop();
}
}
// Dump some properties
public void CDREventArrived(object sender, EventArrivedEventArgs e) {
//Get the Event object and display it
PropertyData pd;
if(( pd = e.NewEvent.Properties["TargetInstance"]) != null)
{
ManagementBaseObject mbo = pd.Value as ManagementBaseObject;
Console.WriteLine(mbo.Properties["VolumeName"].Value);
}

Willy.
Nov 16 '05 #7
I put in your code more or less as given but the event never fires. I'm not
familiar with ManagementEventWatcher, which makes the code somewhat vague,
although I get the general idea behind it. Is there something I can do to
test it?

"Willy Denoyette [MVP]" <wi*************@pandora.be> wrote in message
news:uY**************@TK2MSFTNGP09.phx.gbl...

"Paul Steele" <pa*********@acadiau.ca> wrote in message
news:uA**************@TK2MSFTNGP12.phx.gbl...
I am writing a C# app that needs to periodically poll for cdroms and usb
storage device insertions. I've looked at the WMI functions but haven't
found anything all that useful. The closest is Win32_DiskDrive, but it
doesn't seem to return any information on cdrom devices. I suspect there
might be a Win32 API call, but I haven't found any info yet using Google.
Is there a way to achieve this in C#?


Use 'Win32_LogicalDisk' instead of Win32_DiskDrive and register a
asynchronous event handler for __InstanceModificationEvent, something like
this will do.

using System.Management;
class TestClass{
public static void Main() {
TestClasswe = new TestClass();
ManagementEventWatcher w= null;
WqlEventQuery q = new WqlEventQuery();
ManagementScope scope = new ManagementScope("root\\CIMV2");
try {
q.EventClassName = "__InstanceModificationEvent";
q.WithinInterval = new TimeSpan(0,0,3);
// DriveType - 5: CDROM
q.Condition = @"TargetInstance ISA 'Win32_LogicalDisk' and
TargetInstance.DriveType = 5 and TargetInstance.VolumeName != null";
w = new ManagementEventWatcher(scope, q);
// register async. event handler
w.EventArrived += new EventArrivedEventHandler(we.CDREventArrived);
w.Start();
// Do something usefull,block thread for testing
Console.ReadLine();
}
catch(Exception e) {
Console.WriteLine(e.Message);
}
finally {
w.Stop();
}
}
// Dump some properties
public void CDREventArrived(object sender, EventArrivedEventArgs e) {
//Get the Event object and display it
PropertyData pd;
if(( pd = e.NewEvent.Properties["TargetInstance"]) != null)
{
ManagementBaseObject mbo = pd.Value as ManagementBaseObject;
Console.WriteLine(mbo.Properties["VolumeName"].Value);
}

Willy.

Nov 16 '05 #8

"Paul Steele" <pa*********@acadiau.ca> wrote in message
news:eh**************@tk2msftngp13.phx.gbl...

"Willy Denoyette [MVP]" <wi*************@pandora.be> wrote in message
news:OG**************@TK2MSFTNGP12.phx.gbl...

"Paul Steele" <pa*********@acadiau.ca> wrote in message
news:O4**************@TK2MSFTNGP14.phx.gbl...
I put in your code more or less as given but the event never fires. I'm
not familiar with ManagementEventWatcher, which makes the code somewhat
vague, although I get the general idea behind it. Is there something I
can do to test it?


Change the query string into:
q.Condition = @"TargetInstance ISA 'Win32_LogicalDisk' and
TargetInstance.DriveType = 5";
, and insert and/or remove the CD into/from the drive.
With this change all modifications to to 'Win32_LogicalDisk' will fire
an event, while the original query will only fire when a named volume is
inserted.


Found the problem. I didn't notice that "finally" clause in the try/catch
was executing. I has removed the readline because I moved to code to a
button. Stupid mistake and the program does seem to work. There is one
weird side effect. On my desktop a floppy seek occurs every 3 seconds,
probably because the event requires the OS to query all logical devices,
including the floppy. It's too bad it can't make a silent check for the
floppy...


You can prevent this by including the DeviceId in the query.

q.Condition = @"TargetInstance ISA 'Win32_LogicalDisk' and
TargetInstance.DriveType = 5 and TargetInstance.DeviceId='E:'" // where E:
is the drive letter of the CD drive

Willy.


Nov 16 '05 #9
rhr
1
Willy,
Great work, it works perfect in console app.

However do you have any idea as to why your code is not working in a Windows app?
Also after using it in console app, my A: drive keeps checking for a floppy almost every 5 secs. Do you know what is causing that? In Windows Task Manager I have a CDDetector.cshost.exe that I am not able to end the process of, do you think this is what causing the A: drive issue?

Great job though:)

Thanks.
May 4 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Damon Morbius | last post by:
Is there a standard way to detect the device a visitor is using to access your site (i.e. Cell phone, handheld, web browser). Ultimately my goal is to detect what kind of device a visitor is using...
3
by: M | last post by:
I searched the FAQ for this NG and found no answers to my question... I'm writing an application in Java (I'm not a C programmer), however I need to be able to detect WHICH drive (d:\, e:\...
8
by: Hayato Iriumi | last post by:
Hello, I'm trying to find a way to detect whether CD-ROM was inserted into the CD-ROM drive using C#. Does anyone have any idea how to do this? WMI? Win32 API? TIA
6
by: sanjana | last post by:
hi i wanna detect if a anything is connected to the usb port I am using system.management class for tht purpose this is my code class usbdetect { public static void Main() { usbdetect we =...
3
by: Ognjen Bezanov | last post by:
Hello, I am trying to control a CD-ROM drive using python. The code I use is shown below.
4
by: pankajprakash | last post by:
Hi, i have a windows application in vb.net. I just want to detect the USB pen port whether is it connected or not, if connected then i want to copy and remove the file from the pen derive.
0
Ali Rizwan
by: Ali Rizwan | last post by:
hello everybody I am making an interactive software for a company, but the problem is that how can we detect the cdrom because all the data is stored in CD. Suppose there are to CD Roms in a pc...
1
Ali Rizwan
by: Ali Rizwan | last post by:
How to print a flexgrid instead of whole form How to set print quality How to detect CDROM, that is the required cd is inserted or not
3
by: Charming12 | last post by:
Hi All, I have to deal with some devices like Pen Tablet, WebCam etc to work for a product. Now my Problem is some times while working , I am not able to tell whether a certain device is...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.