主题:  多张光碟的内容判断

kun_5d

职务:普通成员
等级:1
金币:0.0
发贴:80
#12000/12/18 15:01:40
不少人看过照相馆故事之类的多张光碟的教学软件,
我想问如何判断要访问的内容是否在本张光碟里,
如果不在,
又如何判断要访问的内容是否在用户新插入的光碟里,
请各位大侠讲解一下。



xuyi_5d

职务:普通成员
等级:2
金币:1.0
发贴:179
#22000/12/18 17:26:20
用这个script可以通过xxx检测,也可以写成带参数的
on CheckDrive
repeat with i = 67 to 90
set drive = numTochar( i )
set thisPath = string(drive & ":\xxx")--xx为光盘上的一个文件
set myFile = new(xtra "fileio") -- Create an instance of FileIO Xtra
openFile(myFile, thisPath, 1) -- attempt to open the file
if status(myfile) = 0 then -- status returns 0 for success
set myFile = 0 -- Dispose of the instance
isbeing=true
exit
end if
end repeat
set myFile = 0 -- Dispose of the instance
isbeing=false
end

编辑历史:[这消息被xuyi编辑过(编辑时间2000-12-18 17:26:43)]