主题:  寻找光驱符号的贴子,

kun_5d

职务:普通成员
等级:1
金币:0.0
发贴:80
#12000/12/26 11:17:41
请问谁知道以前讨论自动查找用户光驱盘符的那个贴子的连接???
有谁可以告诉我,
或者贴在后面,
多谢,



amith

职务:普通成员
等级:1
金币:0.0
发贴:159
#22000/12/26 21:24:28
myFile=new(xtra "fileio")
repeat with i=67 to 90
set driverName=numtochar(i)
set a=driverName&":\madebyamith.dtm" --光盘目录加入一个识别文件 madebyamith.dtm
openfile(myfile,a,1)
if status(myfile)=0 then
cdromPath=driverName & ":\" --获得光驱字符
isgetcdrom=true
end if
end repeat
if isgetcdrom =false then
alert "请放入光盘"
quit
end if