Python调用C++的DLL


import os
import sys
from ctypes import *

test = cdll.LoadLibrary('D:\Python27\py.dll')
print test.Add(1, 2)
test.Echo("hello dll")

mypath = sys.argv[1]
if not os.path.exists(mypath):
    print "The path %s does not exist!" % mypath
    sys.exit(2)

for f in [s for s in os.listdir(mypath) if os.path.splitext(s)[1] == ".csta"]:
    outputname = f + ".csv"
    test.Analyzer(os.path.join(mypath,f), os.path.join(mypath,outputname))
    print "%s >> %s" %(f, outputname)

程序思路:

  1. 调用cdll.LoadLibrary将dll导入进来;

  2. 32bit的dll在64bit的Python中无法使用;


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM