Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Windows 操作系统上,如何让 python 检测是否有任何东西插入到计算机上的特定 USB 位置。例如“端口_#0002.Hub_#0003”
我已经尝试过 pyUSB,它可以很好地检测特定设备,但我似乎无法弄清楚如何检查任何类型设备的特定端口/集线器位置。
民意调查呢?创建一个 Python 应用程序,它每隔几秒左右枚举一个连接的 USB 设备列表。
保留最初检测到的设备的列表/字典,并与之进行比较以确定自上次轮询迭代以来附加/分离的内容。
这不是最好的方法,枚举所有设备需要很短的时间,所以不太确定这是否是 CPU 效率最高的方法。