在Windows 10中寻找USB的循环python功能

时间:2017-10-26 05:57:40

标签: python

好的,所以我试图创建一个python脚本来查找名为MyUSB的USB驱动器,程序将每隔2秒检查一次。有没有人有我应该使用的建议代码?

1 个答案:

答案 0 :(得分:0)

Project我已经习惯了检查usb检测。

 import os
 a=os.popen("wmic logicaldisk get description")
 dev_list=a.read()
 if "Removable" in dev_list:
    print("Pendrive Detected")
 else:
    print("Pendrive is not there")

但它检测到所有可移动驱动器。