これは私のコードです:
try:
import clr, sys
from xml.dom.minidom import parse
import datetime
sys.path.append("C:\\teest")
clr.AddReference("TCdll")
from ClassLibrary1 import Class1
cl = Class1()
except ( ImportError ) :
print "Module may not be existing "
私の TCdll は C:\test にあります。エラーを知るために C:\teest として指定しました。
例外はこれです:
Traceback (most recent call last):
File "C:/Python25/13thjan/PSE.py", line 8, in <module>
clr.AddReference("TCdll")
FileNotFoundException: Unable to find assembly 'TCdll'.
at Python.Runtime.CLRModule.AddReference(String name)
この例外を処理する方法??
すぐに助けが必要