精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

指定的驅(qū)動器存在嗎?

代碼:

<!DOCTYPE html>

<html>

<body>

<%

Set fs=Server.CreateObject("Scripting.FileSystemObject")

 

if fs.driveexists("c:") = true then

      Response.Write("Drive c: exists.")

Else

      Response.Write("Drive c: does not exist.")

End If

 

Response.write("<br>")

 

if fs.driveexists("g:") = true then

      Response.Write("Drive g: exists.")

Else

      Response.Write("Drive g: does not exist.")

End If

 

set fs=nothing

%>

 

</body>

</html>

結(jié)果:

Drive c: exists.
Drive g: does not exist.

相關(guān)文章