如何在程序中获取系统目录,也就是通常的X:\windows\system32
如标题
好像没有现成的函数可用,只能把可能有的盘都查一下了:
for i=67 to 75 &&从C:查 到K :
syspath=chr(i)+":\windows\system32"
if directory(syspath)
exit
endif
endfor
messagebox("系统路径是:"+syspath)