Отловить событие подключения/отключения USB-носителя - C# (177538)
Формулировка задачи:
Товарищи, поделитесь ,пожалуйста, работающими примерами по данному вопросу. И если есть какие то библиотеки по данному вопросу, то подскажите, что посмотреть.
Решение задачи: «Отловить событие подключения/отключения USB-носителя»
textual
Листинг программы
using System; using System.Management; using System.Windows.Forms; namespace WindowsFormsApplication { class USBConnectionsChecker { private int devicesCount; private Timer updatingInformationTimer; public event EventHandler DeviceConnected; public event EventHandler DeviceDisconnected; private int GetDevicesCount() { return ((new ManagementObjectSearcher(@"select * from Win32_DiskDrive")).Get()).Count; } private void UpdatingInformationTimer_Tick(object sender, EventArgs e) { int newDevicesCountValue = GetDevicesCount(); if (newDevicesCountValue != devicesCount) { if (newDevicesCountValue > devicesCount) { devicesCount = newDevicesCountValue; DeviceConnected(this, null); } else { devicesCount = newDevicesCountValue; DeviceDisconnected(this, null); } } } public USBConnectionsChecker() { devicesCount = GetDevicesCount(); updatingInformationTimer = new Timer(); updatingInformationTimer.Tick += new EventHandler(this.UpdatingInformationTimer_Tick); updatingInformationTimer.Interval = 1000; updatingInformationTimer.Enabled = true; } } }
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д