R
rainee
Unregistered / Unconfirmed
GUEST, unregistred user!
这段代码能在win2000的IIS里正常运行,而在win2003里却要出错:
set fso = createobject("scripting.filesystemobject")
isExists = false
sd = split(FileExt, "|")
for i = 0 to ubound(sd)
fn = MirRoot &
LogPath &
right("0000"&yy,4) &
"-" &
right("00"&mm, 2) &
"/" &
CurDate &
sd(i)
if fso.fileexists(fn) then
isExists = true
exit for
end if
next
有人能解决能在win2003里运行吗?
set fso = createobject("scripting.filesystemobject")
isExists = false
sd = split(FileExt, "|")
for i = 0 to ubound(sd)
fn = MirRoot &
LogPath &
right("0000"&yy,4) &
"-" &
right("00"&mm, 2) &
"/" &
CurDate &
sd(i)
if fso.fileexists(fn) then
isExists = true
exit for
end if
next
有人能解决能在win2003里运行吗?