load gui文件的路径问题
小弟现在需要将路好的脚本存到TD上,所以想将脚本用到的gui文件放到脚本所在的目录下,但是用相对路径load gui文件时有几个文件不能load进来,查找后发现通过相对途径load的gui文件是在一个临时目录下,而不是在脚本所在的目录.请教如果想要把gui文件和脚本同时上传到TD上,该把gui文件放到脚本的什么位置,并且路径怎么调用.谢谢了. gui文件放的位置没有限制的,放那里都可以,但是你要把你放的路径写清楚public GuiPath = "Gui在TD的路径";
GuiFile=tddb_load_attachment ( "GuiName.GUI", GuiPath);
GUI_load(GuiFile); # get the test file path
static test_Path = getvar("testname");
# get the test table path
static DB_Path1 = test_Path & "\\login.xls";
static DB_Path2 = test_Path & "\\repair.xls";
# get the gui file path
static GUI_Path= test_Path & "\\111222.gui";
# load GUI
if(GUI_load(GUI_Path) == E_OK)
report_msg("GUI load success!"); 把gui文件放到脚本文件夹下,之后用ls的方法就可以load了
页:
[1]