我正在尝试在 python 中加载一个 DLL 来调用函数。
import ctypes
from ctypes import *
dsusb = ctypes.WinDLL('c:\python27\dsusb.dll')
我的堆栈中出现以下错误。
C:\Python27>python test.py
Traceback (most recent call last):
File "test.py", line 4, in <module>
dsusb = ctypes.WinDLL('c:\python27\dsusb.dll')
File "C:\Python27\lib\ctypes\__init__.py", line 365, in __init__
self._handle = _dlopen(self._name, mode)
WindowsError: [Error 193] %1 is not a valid Win32 application
我也用相同的代码尝试了 cdll。
我查了一下错误,windows说这是由于路径包含空格......我认为这不是真正的问题......
我加载这个 DLL 是错误的还是 dll 中可能有问题?