黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

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

代碼:

<!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)文章