我正在使用带有ctypes
的python以某种方式访问有关连接到PC的USB设备的信息。这是从.dll可以实现的吗?我试图找到它所在的位置,它的供应商等等。
一个例子:
>>> import ctypes import windll
>>> windll.kernel32
<WindDLL 'kernel32', handle 77590000 at 581b70>
但我怎样才能找到哪个.dll是正确的?我用Google搜索,但似乎没有任何东西。
答案 0 :(得分:0)
最后我使用了一种更简单的方法。
我使用Python附带的winreg
模块来访问Windows注册表。 HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices
跟踪所有已挂载的设备(当前已连接或未连接)。因此,我从那里获取所有设备信息,并检查设备当前是否已连接,我只需os.path.exists
设备的存储字母(即G:
)。存储信函可以从密钥MountedDevices
获得。
示例:
# Make it work for Python2 and Python3
if sys.version_info[0]<3:
from _winreg import *
else:
from winreg import *
# Get DOS devices (connected or not)
def get_dos_devices():
ddevs=[dev for dev in get_mounted_devices() if 'DosDevices' in dev[0]]
return [(d[0], regbin2str(d[1])) for d in ddevs]
# Get all mounted devices (connected or not)
def get_mounted_devices():
devs=[]
mounts=OpenKey(HKEY_LOCAL_MACHINE, 'SYSTEM\MountedDevices')
for i in range(QueryInfoKey(mounts)[1]):
devs+=[EnumValue(mounts, i)]
return devs
# Decode registry binary to readable string
def regbin2str(bin):
str=''
for i in range(0, len(bin), 2):
if bin[i]<128:
str+=chr(bin[i])
return str
然后只需运行:
get_dos_devices()