好的,所以我试图创建一个python脚本来查找名为MyUSB
的USB驱动器,程序将每隔2秒检查一次。有没有人有我应该使用的建议代码?
答案 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")
但它检测到所有可移动驱动器。